home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 34 / Amiga Format CD34 (1998-11-20)(Future Publishing)(GB)[!][Christmas issue].iso / -seriously_amiga- / programming / c / viewperf5.1 / viewperf / objs / vpdefine.h < prev    next >
C/C++ Source or Header  |  1998-10-01  |  93KB  |  5,309 lines

  1. /*
  2. =======================================================================
  3.  
  4. These defines are very cryptic so as to product file names
  5. that work with all file systems, I believe some explanation is needed.
  6.  
  7. Each #ifdef <tag> produces a <tag>.c file 
  8.  
  9. Rendering <tags> are of the form:
  10. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  11. [primitive type][Special Structure][Render Attributes]
  12.  
  13. where
  14.  
  15. [primitive type] = { m, p, q, t }
  16.     m = mesh
  17.     p = polygon
  18.     q = quad
  19.     t = triangle
  20.  
  21. [Special Structure] = { B, E, NB, B2 }
  22.     B = Batch mode, where all vertices are sent between one
  23.                     glBegin/glEnd pair
  24.     E = External function, used for altering state per primitive
  25.     NB = No batching, one primitive between each glBegin/glEnd pair
  26.     B2 = Batching, two vertices between each glBegin/glEnd pair  
  27.  
  28. [Render Attributes] = { Fc, Vc, Fn, Vn, T }
  29.     Fc = Facet Colors
  30.     Vc = Vertex Color
  31.     Fn = Facet Normal
  32.     Vn = Vertex Normal
  33.     T  = Texture Coord
  34.     
  35.  
  36. Event Loop <tags> are of the form:
  37. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  38.  
  39. e[Mode][Special Functions]
  40.  
  41. where
  42.  
  43. [Mode] = { D, I }
  44.     D = Display List
  45.     I = Immediate
  46.  
  47. [Special Functions] = { M, A, W }
  48.         M = Motion blur via the accumulation buffer
  49.         A = Full scene antialiasing via the accumulation buffer
  50.         W = Walkthru mode
  51.     
  52. =======================================================================
  53. */
  54.  
  55.  
  56.  
  57. #ifdef eD
  58.     #define DISPLAY_LIST
  59.     #define FUNCTION   evtD
  60. #endif
  61. #ifdef eI
  62.     #define FUNCTION   evtI
  63. #endif
  64.  
  65. #ifdef eDM
  66.     #define MOTION_BLUR
  67.     #define DISPLAY_LIST
  68.     #define FUNCTION   evtDM
  69. #endif
  70. #ifdef eIM
  71.     #define MOTION_BLUR
  72.     #define FUNCTION   evtIM
  73. #endif
  74. #ifdef eDA
  75.     #define FS_ANTIALIASING
  76.     #define DISPLAY_LIST
  77.     #define FUNCTION   evtDA
  78. #endif
  79. #ifdef eIA
  80.     #define FS_ANTIALIASING
  81.     #define FUNCTION   evtIA
  82. #endif
  83.  
  84. #ifdef eDMA
  85.     #define MOTION_BLUR
  86.     #define FS_ANTIALIASING
  87.     #define DISPLAY_LIST
  88.     #define FUNCTION   evtDMA
  89. #endif
  90. #ifdef eIMA
  91.     #define MOTION_BLUR
  92.     #define FS_ANTIALIASING
  93.     #define FUNCTION   evtIMA
  94. #endif
  95. #ifdef eDW
  96.     #define DISPLAY_LIST
  97.     #define WALKTHRU
  98.     #define FUNCTION   evtDW
  99. #endif
  100. #ifdef eIW
  101.     #define WALKTHRU
  102.     #define FUNCTION   evtIW
  103. #endif
  104.  
  105. #ifdef eDMW
  106.     #define MOTION_BLUR
  107.     #define DISPLAY_LIST
  108.     #define WALKTHRU
  109.     #define FUNCTION   evtDMW
  110. #endif
  111. #ifdef eIMW
  112.     #define MOTION_BLUR
  113.     #define WALKTHRU
  114.     #define FUNCTION   evtIMW
  115. #endif
  116. #ifdef eDAW
  117.     #define FS_ANTIALIASING
  118.     #define DISPLAY_LIST
  119.     #define WALKTHRU
  120.     #define FUNCTION   evtDAW
  121. #endif
  122. #ifdef eIAW
  123.     #define FS_ANTIALIASING
  124.     #define WALKTHRU
  125.     #define FUNCTION   evtIAW
  126. #endif
  127.  
  128. #ifdef eDMAW
  129.     #define MOTION_BLUR
  130.     #define FS_ANTIALIASING
  131.     #define DISPLAY_LIST
  132.     #define WALKTHRU
  133.     #define FUNCTION   evtDMAW
  134. #endif
  135. #ifdef eIMAW
  136.     #define MOTION_BLUR
  137.     #define FS_ANTIALIASING
  138.     #define WALKTHRU
  139.     #define FUNCTION   evtIMAW
  140. #endif
  141.  
  142. #ifdef pNB
  143.     #define FUNCTION    rmpNB 
  144. #endif
  145.  
  146. #ifdef pNBFc
  147.     #define FACET_COLOR
  148.     #define FUNCTION    rmpNBFc 
  149. #endif
  150.  
  151. #ifdef pNBFcT
  152.     #define TEXTURE
  153.     #define FACET_COLOR
  154.     #define FUNCTION    rmpNBFcT 
  155. #endif
  156.  
  157. #ifdef pNBFn
  158.     #define FACET_NORM
  159.     #define FUNCTION    rmpNBFn 
  160. #endif
  161.  
  162. #ifdef pNBFnFc
  163.     #define FACET_NORM
  164.     #define FACET_COLOR
  165.     #define FUNCTION    rmpNBFnFc 
  166. #endif
  167.  
  168. #ifdef pNBFnFcT
  169.     #define FACET_NORM
  170.     #define TEXTURE
  171.     #define FACET_COLOR
  172.     #define FUNCTION    rmpNBFnFcT 
  173. #endif
  174.  
  175. #ifdef pNBFnT
  176.     #define FACET_NORM
  177.     #define TEXTURE
  178.     #define FUNCTION    rmpNBFnT 
  179. #endif
  180.  
  181. #ifdef pNBFnVc
  182.     #define VERT_COLOR
  183.     #define FACET_NORM
  184.     #define FUNCTION    rmpNBFnVc 
  185. #endif
  186.  
  187. #ifdef pNBFnVcT
  188.     #define VERT_COLOR
  189.     #define FACET_NORM
  190.     #define TEXTURE
  191.     #define FUNCTION    rmpNBFnVcT 
  192. #endif
  193.  
  194. #ifdef pNBT
  195.     #define TEXTURE
  196.     #define FUNCTION    rmpNBT 
  197. #endif
  198.  
  199. #ifdef pNBVc
  200.     #define VERT_COLOR
  201.     #define FUNCTION    rmpNBVc 
  202. #endif
  203.  
  204. #ifdef pNBVcT
  205.     #define VERT_COLOR
  206.     #define TEXTURE
  207.     #define FUNCTION    rmpNBVcT 
  208. #endif
  209.  
  210. #ifdef pNBVn
  211.     #define VERT_NORM
  212.     #define FUNCTION    rmpNBVn 
  213. #endif
  214.  
  215. #ifdef pNBVnFc
  216.     #define VERT_NORM
  217.     #define FACET_COLOR
  218.     #define FUNCTION    rmpNBVnFc 
  219. #endif
  220.  
  221. #ifdef pNBVnFcT
  222.     #define VERT_NORM
  223.     #define TEXTURE
  224.     #define FACET_COLOR
  225.     #define FUNCTION    rmpNBVnFcT 
  226. #endif
  227.  
  228. #ifdef pNBVnT
  229.     #define VERT_NORM
  230.     #define TEXTURE
  231.     #define FUNCTION    rmpNBVnT 
  232. #endif
  233.  
  234. #ifdef pNBVnVc
  235.     #define VERT_NORM
  236.     #define VERT_COLOR
  237.     #define FUNCTION    rmpNBVnVc 
  238. #endif
  239.  
  240. #ifdef pNBVnVcT
  241.     #define VERT_NORM
  242.     #define VERT_COLOR
  243.     #define TEXTURE
  244.     #define FUNCTION    rmpNBVnVcT 
  245. #endif
  246.  
  247. #ifdef mNB
  248.     #define FUNCTION    rmmNB 
  249. #endif
  250.  
  251. #ifdef mNBFc
  252.     #define FACET_COLOR
  253.     #define FUNCTION    rmmNBFc 
  254. #endif
  255.  
  256. #ifdef mNBFcT
  257.     #define TEXTURE
  258.     #define FACET_COLOR
  259.     #define FUNCTION    rmmNBFcT 
  260. #endif
  261.  
  262. #ifdef mNBFn
  263.     #define FACET_NORM
  264.     #define FUNCTION    rmmNBFn 
  265. #endif
  266.  
  267. #ifdef mNBFnFc
  268.     #define FACET_NORM
  269.     #define FACET_COLOR
  270.     #define FUNCTION    rmmNBFnFc 
  271. #endif
  272.  
  273. #ifdef mNBFnFcT
  274.     #define FACET_NORM
  275.     #define TEXTURE
  276.     #define FACET_COLOR
  277.     #define FUNCTION    rmmNBFnFcT 
  278. #endif
  279.  
  280. #ifdef mNBFnT
  281.     #define FACET_NORM
  282.     #define TEXTURE
  283.     #define FUNCTION    rmmNBFnT 
  284. #endif
  285.  
  286. #ifdef mNBFnVc
  287.     #define VERT_COLOR
  288.     #define FACET_NORM
  289.     #define FUNCTION    rmmNBFnVc 
  290. #endif
  291.  
  292. #ifdef mNBFnVcT
  293.     #define VERT_COLOR
  294.     #define FACET_NORM
  295.     #define TEXTURE
  296.     #define FUNCTION    rmmNBFnVcT 
  297. #endif
  298.  
  299. #ifdef mNBT
  300.     #define TEXTURE
  301.     #define FUNCTION    rmmNBT 
  302. #endif
  303.  
  304. #ifdef mNBVc
  305.     #define VERT_COLOR
  306.     #define FUNCTION    rmmNBVc 
  307. #endif
  308.  
  309. #ifdef mNBVcT
  310.     #define VERT_COLOR
  311.     #define TEXTURE
  312.     #define FUNCTION    rmmNBVcT 
  313. #endif
  314.  
  315. #ifdef mNBVn
  316.     #define VERT_NORM
  317.     #define FUNCTION    rmmNBVn 
  318. #endif
  319.  
  320. #ifdef mNBVnFc
  321.     #define VERT_NORM
  322.     #define FACET_COLOR
  323.     #define FUNCTION    rmmNBVnFc 
  324. #endif
  325.  
  326. #ifdef mNBVnFcT
  327.     #define VERT_NORM
  328.     #define TEXTURE
  329.     #define FACET_COLOR
  330.     #define FUNCTION    rmmNBVnFcT 
  331. #endif
  332.  
  333. #ifdef mNBVnT
  334.     #define VERT_NORM
  335.     #define TEXTURE
  336.     #define FUNCTION    rmmNBVnT 
  337. #endif
  338.  
  339. #ifdef mNBVnVc
  340.     #define VERT_NORM
  341.     #define VERT_COLOR
  342.     #define FUNCTION    rmmNBVnVc 
  343. #endif
  344.  
  345. #ifdef mNBVnVcT
  346.     #define VERT_NORM
  347.     #define VERT_COLOR
  348.     #define TEXTURE
  349.     #define FUNCTION    rmmNBVnVcT 
  350. #endif
  351.  
  352. #ifdef pB
  353.     #define BATCH
  354.     #define FUNCTION    rmpB 
  355. #endif
  356.  
  357. #ifdef pBFc
  358.     #define BATCH
  359.     #define FACET_COLOR
  360.     #define FUNCTION    rmpBFc 
  361. #endif
  362.  
  363. #ifdef pBFcT
  364.     #define BATCH
  365.     #define TEXTURE
  366.     #define FACET_COLOR
  367.     #define FUNCTION    rmpBFcT 
  368. #endif
  369.  
  370. #ifdef pBFn
  371.     #define BATCH
  372.     #define FACET_NORM
  373.     #define FUNCTION    rmpBFn 
  374. #endif
  375.  
  376. #ifdef pBFnFc
  377.     #define BATCH
  378.     #define FACET_NORM
  379.     #define FACET_COLOR
  380.     #define FUNCTION    rmpBFnFc 
  381. #endif
  382.  
  383. #ifdef pBFnFcT
  384.     #define BATCH
  385.     #define FACET_NORM
  386.     #define TEXTURE
  387.     #define FACET_COLOR
  388.     #define FUNCTION    rmpBFnFcT 
  389. #endif
  390.  
  391. #ifdef pBFnT
  392.     #define BATCH
  393.     #define FACET_NORM
  394.     #define TEXTURE
  395.     #define FUNCTION    rmpBFnT 
  396. #endif
  397.  
  398. #ifdef pBFnVc
  399.     #define BATCH
  400.     #define VERT_COLOR
  401.     #define FACET_NORM
  402.     #define FUNCTION    rmpBFnVc 
  403. #endif
  404.  
  405. #ifdef pBFnVcT
  406.     #define BATCH
  407.     #define VERT_COLOR
  408.     #define FACET_NORM
  409.     #define TEXTURE
  410.     #define FUNCTION    rmpBFnVcT 
  411. #endif
  412.  
  413. #ifdef pBT
  414.     #define BATCH
  415.     #define TEXTURE
  416.     #define FUNCTION    rmpBT 
  417. #endif
  418.  
  419. #ifdef pBVc
  420.     #define BATCH
  421.     #define VERT_COLOR
  422.     #define FUNCTION    rmpBVc 
  423. #endif
  424.  
  425. #ifdef pBVcT
  426.     #define BATCH
  427.     #define VERT_COLOR
  428.     #define TEXTURE
  429.     #define FUNCTION    rmpBVcT 
  430. #endif
  431.  
  432. #ifdef pBVn
  433.     #define BATCH
  434.     #define VERT_NORM
  435.     #define FUNCTION    rmpBVn 
  436. #endif
  437.  
  438. #ifdef pBVnFc
  439.     #define BATCH
  440.     #define VERT_NORM
  441.     #define FACET_COLOR
  442.     #define FUNCTION    rmpBVnFc 
  443. #endif
  444.  
  445. #ifdef pBVnFcT
  446.     #define BATCH
  447.     #define VERT_NORM
  448.     #define TEXTURE
  449.     #define FACET_COLOR
  450.     #define FUNCTION    rmpBVnFcT 
  451. #endif
  452.  
  453. #ifdef pBVnT
  454.     #define BATCH
  455.     #define VERT_NORM
  456.     #define TEXTURE
  457.     #define FUNCTION    rmpBVnT 
  458. #endif
  459.  
  460. #ifdef pBVnVc
  461.     #define BATCH
  462.     #define VERT_NORM
  463.     #define VERT_COLOR
  464.     #define FUNCTION    rmpBVnVc 
  465. #endif
  466.  
  467. #ifdef pBVnVcT
  468.     #define BATCH
  469.     #define VERT_NORM
  470.     #define VERT_COLOR
  471.     #define TEXTURE
  472.     #define FUNCTION    rmpBVnVcT 
  473. #endif
  474.  
  475. #ifdef pB2
  476.     #define BATCH
  477.     #define FUNCTION    rmpB2 
  478.     #define BY_TWO
  479. #endif
  480.  
  481. #ifdef pB2Fc
  482.     #define BATCH
  483.     #define FACET_COLOR
  484.     #define FUNCTION    rmpB2Fc 
  485.     #define BY_TWO
  486. #endif
  487.  
  488. #ifdef pB2FcT
  489.     #define BATCH
  490.     #define TEXTURE
  491.     #define FACET_COLOR
  492.     #define FUNCTION    rmpB2FcT 
  493.     #define BY_TWO
  494. #endif
  495.  
  496. #ifdef pB2Fn
  497.     #define BATCH
  498.     #define FACET_NORM
  499.     #define FUNCTION    rmpB2Fn 
  500.     #define BY_TWO
  501. #endif
  502.  
  503. #ifdef pB2FnFc
  504.     #define BATCH
  505.     #define FACET_NORM
  506.     #define FACET_COLOR
  507.     #define FUNCTION    rmpB2FnFc 
  508.     #define BY_TWO
  509. #endif
  510.  
  511. #ifdef pB2FnFcT
  512.     #define BATCH
  513.     #define FACET_NORM
  514.     #define TEXTURE
  515.     #define FACET_COLOR
  516.     #define FUNCTION    rmpB2FnFcT 
  517.     #define BY_TWO
  518. #endif
  519.  
  520. #ifdef pB2FnT
  521.     #define BATCH
  522.     #define FACET_NORM
  523.     #define TEXTURE
  524.     #define FUNCTION    rmpB2FnT 
  525.     #define BY_TWO
  526. #endif
  527.  
  528. #ifdef pB2FnVc
  529.     #define BATCH
  530.     #define VERT_COLOR
  531.     #define FACET_NORM
  532.     #define FUNCTION    rmpB2FnVc 
  533.     #define BY_TWO
  534. #endif
  535.  
  536. #ifdef pB2FnVcT
  537.     #define BATCH
  538.     #define VERT_COLOR
  539.     #define FACET_NORM
  540.     #define TEXTURE
  541.     #define FUNCTION    rmpB2FnVcT 
  542.     #define BY_TWO
  543. #endif
  544.  
  545. #ifdef pB2T
  546.     #define BATCH
  547.     #define TEXTURE
  548.     #define FUNCTION    rmpB2T 
  549.     #define BY_TWO
  550. #endif
  551.  
  552. #ifdef pB2Vc
  553.     #define BATCH
  554.     #define VERT_COLOR
  555.     #define FUNCTION    rmpB2Vc 
  556.     #define BY_TWO
  557. #endif
  558.  
  559. #ifdef pB2VcT
  560.     #define BATCH
  561.     #define VERT_COLOR
  562.     #define TEXTURE
  563.     #define FUNCTION    rmpB2VcT 
  564.     #define BY_TWO
  565. #endif
  566.  
  567. #ifdef pB2Vn
  568.     #define BATCH
  569.     #define VERT_NORM
  570.     #define FUNCTION    rmpB2Vn 
  571.     #define BY_TWO
  572. #endif
  573.  
  574. #ifdef pB2VnFc
  575.     #define BATCH
  576.     #define VERT_NORM
  577.     #define FACET_COLOR
  578.     #define FUNCTION    rmpB2VnFc 
  579.     #define BY_TWO
  580. #endif
  581.  
  582. #ifdef pB2VnFcT
  583.     #define BATCH
  584.     #define VERT_NORM
  585.     #define TEXTURE
  586.     #define FACET_COLOR
  587.     #define FUNCTION    rmpB2VnFcT 
  588.     #define BY_TWO
  589. #endif
  590.  
  591. #ifdef pB2VnT
  592.     #define BATCH
  593.     #define VERT_NORM
  594.     #define TEXTURE
  595.     #define FUNCTION    rmpB2VnT 
  596.     #define BY_TWO
  597. #endif
  598.  
  599. #ifdef pB2VnVc
  600.     #define BATCH
  601.     #define VERT_NORM
  602.     #define VERT_COLOR
  603.     #define FUNCTION    rmpB2VnVc 
  604.     #define BY_TWO
  605. #endif
  606.  
  607. #ifdef pB2VnVcT
  608.     #define BATCH
  609.     #define VERT_NORM
  610.     #define VERT_COLOR
  611.     #define TEXTURE
  612.     #define FUNCTION    rmpB2VnVcT 
  613.     #define BY_TWO
  614. #endif
  615.  
  616. #ifdef mB2
  617.     #define BATCH
  618.     #define FUNCTION    rmmB2 
  619.     #define BY_TWO
  620. #endif
  621.  
  622. #ifdef mB2Fc
  623.     #define BATCH
  624.     #define FACET_COLOR
  625.     #define FUNCTION    rmmB2Fc 
  626.     #define BY_TWO
  627. #endif
  628.  
  629. #ifdef mB2FcT
  630.     #define BATCH
  631.     #define TEXTURE
  632.     #define FACET_COLOR
  633.     #define FUNCTION    rmmB2FcT 
  634.     #define BY_TWO
  635. #endif
  636.  
  637. #ifdef mB2Fn
  638.     #define BATCH
  639.     #define FACET_NORM
  640.     #define FUNCTION    rmmB2Fn 
  641.     #define BY_TWO
  642. #endif
  643.  
  644. #ifdef mB2FnFc
  645.     #define BATCH
  646.     #define FACET_NORM
  647.     #define FACET_COLOR
  648.     #define FUNCTION    rmmB2FnFc 
  649.     #define BY_TWO
  650. #endif
  651.  
  652. #ifdef mB2FnFcT
  653.     #define BATCH
  654.     #define FACET_NORM
  655.     #define TEXTURE
  656.     #define FACET_COLOR
  657.     #define FUNCTION    rmmB2FnFcT 
  658.     #define BY_TWO
  659. #endif
  660.  
  661. #ifdef mB2FnT
  662.     #define BATCH
  663.     #define FACET_NORM
  664.     #define TEXTURE
  665.     #define FUNCTION    rmmB2FnT 
  666.     #define BY_TWO
  667. #endif
  668.  
  669. #ifdef mB2FnVc
  670.     #define BATCH
  671.     #define VERT_COLOR
  672.     #define FACET_NORM
  673.     #define FUNCTION    rmmB2FnVc 
  674.     #define BY_TWO
  675. #endif
  676.  
  677. #ifdef mB2FnVcT
  678.     #define BATCH
  679.     #define VERT_COLOR
  680.     #define FACET_NORM
  681.     #define TEXTURE
  682.     #define FUNCTION    rmmB2FnVcT 
  683.     #define BY_TWO
  684. #endif
  685.  
  686. #ifdef mB2T
  687.     #define BATCH
  688.     #define TEXTURE
  689.     #define FUNCTION    rmmB2T 
  690.     #define BY_TWO
  691. #endif
  692.  
  693. #ifdef mB2Vc
  694.     #define BATCH
  695.     #define VERT_COLOR
  696.     #define FUNCTION    rmmB2Vc 
  697.     #define BY_TWO
  698. #endif
  699.  
  700. #ifdef mB2VcT
  701.     #define BATCH
  702.     #define VERT_COLOR
  703.     #define TEXTURE
  704.     #define FUNCTION    rmmB2VcT 
  705.     #define BY_TWO
  706. #endif
  707.  
  708. #ifdef mB2Vn
  709.     #define BATCH
  710.     #define VERT_NORM
  711.     #define FUNCTION    rmmB2Vn 
  712.     #define BY_TWO
  713. #endif
  714.  
  715. #ifdef mB2VnFc
  716.     #define BATCH
  717.     #define VERT_NORM
  718.     #define FACET_COLOR
  719.     #define FUNCTION    rmmB2VnFc 
  720.     #define BY_TWO
  721. #endif
  722.  
  723. #ifdef mB2VnFcT
  724.     #define BATCH
  725.     #define VERT_NORM
  726.     #define TEXTURE
  727.     #define FACET_COLOR
  728.     #define FUNCTION    rmmB2VnFcT 
  729.     #define BY_TWO
  730. #endif
  731.  
  732. #ifdef mB2VnT
  733.     #define BATCH
  734.     #define VERT_NORM
  735.     #define TEXTURE
  736.     #define FUNCTION    rmmB2VnT 
  737.     #define BY_TWO
  738. #endif
  739.  
  740. #ifdef mB2VnVc
  741.     #define BATCH
  742.     #define VERT_NORM
  743.     #define VERT_COLOR
  744.     #define FUNCTION    rmmB2VnVc 
  745.     #define BY_TWO
  746. #endif
  747.  
  748. #ifdef mB2VnVcT
  749.     #define BATCH
  750.     #define VERT_NORM
  751.     #define VERT_COLOR
  752.     #define TEXTURE
  753.     #define FUNCTION    rmmB2VnVcT 
  754.     #define BY_TWO
  755. #endif
  756.  
  757. #ifdef qNB
  758.     #define FUNCTION    rmqNB 
  759. #endif
  760.  
  761. #ifdef qNBFc
  762.     #define FACET_COLOR
  763.     #define FUNCTION    rmqNBFc 
  764. #endif
  765.  
  766. #ifdef qNBFcT
  767.     #define TEXTURE
  768.     #define FACET_COLOR
  769.     #define FUNCTION    rmqNBFcT 
  770. #endif
  771.  
  772. #ifdef qNBFn
  773.     #define FACET_NORM
  774.     #define FUNCTION    rmqNBFn 
  775. #endif
  776.  
  777. #ifdef qNBFnFc
  778.     #define FACET_NORM
  779.     #define FACET_COLOR
  780.     #define FUNCTION    rmqNBFnFc 
  781. #endif
  782.  
  783. #ifdef qNBFnFcT
  784.     #define FACET_NORM
  785.     #define TEXTURE
  786.     #define FACET_COLOR
  787.     #define FUNCTION    rmqNBFnFcT 
  788. #endif
  789.  
  790. #ifdef qNBFnT
  791.     #define FACET_NORM
  792.     #define TEXTURE
  793.     #define FUNCTION    rmqNBFnT 
  794. #endif
  795.  
  796. #ifdef qNBFnVc
  797.     #define VERT_COLOR
  798.     #define FACET_NORM
  799.     #define FUNCTION    rmqNBFnVc 
  800. #endif
  801.  
  802. #ifdef qNBFnVcT
  803.     #define VERT_COLOR
  804.     #define FACET_NORM
  805.     #define TEXTURE
  806.     #define FUNCTION    rmqNBFnVcT 
  807. #endif
  808.  
  809. #ifdef qNBT
  810.     #define TEXTURE
  811.     #define FUNCTION    rmqNBT 
  812. #endif
  813.  
  814. #ifdef qNBVc
  815.     #define VERT_COLOR
  816.     #define FUNCTION    rmqNBVc 
  817. #endif
  818.  
  819. #ifdef qNBVcT
  820.     #define VERT_COLOR
  821.     #define TEXTURE
  822.     #define FUNCTION    rmqNBVcT 
  823. #endif
  824.  
  825. #ifdef qNBVn
  826.     #define VERT_NORM
  827.     #define FUNCTION    rmqNBVn 
  828. #endif
  829.  
  830. #ifdef qNBVnFc
  831.     #define VERT_NORM
  832.     #define FACET_COLOR
  833.     #define FUNCTION    rmqNBVnFc 
  834. #endif
  835.  
  836. #ifdef qNBVnFcT
  837.     #define VERT_NORM
  838.     #define TEXTURE
  839.     #define FACET_COLOR
  840.     #define FUNCTION    rmqNBVnFcT 
  841. #endif
  842.  
  843. #ifdef qNBVnT
  844.     #define VERT_NORM
  845.     #define TEXTURE
  846.     #define FUNCTION    rmqNBVnT 
  847. #endif
  848.  
  849. #ifdef qNBVnVc
  850.     #define VERT_NORM
  851.     #define VERT_COLOR
  852.     #define FUNCTION    rmqNBVnVc 
  853. #endif
  854.  
  855. #ifdef qNBVnVcT
  856.     #define VERT_NORM
  857.     #define VERT_COLOR
  858.     #define TEXTURE
  859.     #define FUNCTION    rmqNBVnVcT 
  860. #endif
  861.  
  862. #ifdef qB
  863.     #define BATCH
  864.     #define FUNCTION    rmqB 
  865. #endif
  866.  
  867. #ifdef qBFc
  868.     #define BATCH
  869.     #define FACET_COLOR
  870.     #define FUNCTION    rmqBFc 
  871. #endif
  872.  
  873. #ifdef qBFcT
  874.     #define BATCH
  875.     #define TEXTURE
  876.     #define FACET_COLOR
  877.     #define FUNCTION    rmqBFcT 
  878. #endif
  879.  
  880. #ifdef qBFn
  881.     #define BATCH
  882.     #define FACET_NORM
  883.     #define FUNCTION    rmqBFn 
  884. #endif
  885.  
  886. #ifdef qBFnFc
  887.     #define BATCH
  888.     #define FACET_NORM
  889.     #define FACET_COLOR
  890.     #define FUNCTION    rmqBFnFc 
  891. #endif
  892.  
  893. #ifdef qBFnFcT
  894.     #define BATCH
  895.     #define FACET_NORM
  896.     #define TEXTURE
  897.     #define FACET_COLOR
  898.     #define FUNCTION    rmqBFnFcT 
  899. #endif
  900.  
  901. #ifdef qBFnT
  902.     #define BATCH
  903.     #define FACET_NORM
  904.     #define TEXTURE
  905.     #define FUNCTION    rmqBFnT 
  906. #endif
  907.  
  908. #ifdef qBFnVc
  909.     #define BATCH
  910.     #define VERT_COLOR
  911.     #define FACET_NORM
  912.     #define FUNCTION    rmqBFnVc 
  913. #endif
  914.  
  915. #ifdef qBFnVcT
  916.     #define BATCH
  917.     #define VERT_COLOR
  918.     #define FACET_NORM
  919.     #define TEXTURE
  920.     #define FUNCTION    rmqBFnVcT 
  921. #endif
  922.  
  923. #ifdef qBT
  924.     #define BATCH
  925.     #define TEXTURE
  926.     #define FUNCTION    rmqBT 
  927. #endif
  928.  
  929. #ifdef qBVc
  930.     #define BATCH
  931.     #define VERT_COLOR
  932.     #define FUNCTION    rmqBVc 
  933. #endif
  934.  
  935. #ifdef qBVcT
  936.     #define BATCH
  937.     #define VERT_COLOR
  938.     #define TEXTURE
  939.     #define FUNCTION    rmqBVcT 
  940. #endif
  941.  
  942. #ifdef qBVn
  943.     #define BATCH
  944.     #define VERT_NORM
  945.     #define FUNCTION    rmqBVn 
  946. #endif
  947.  
  948. #ifdef qBVnFc
  949.     #define BATCH
  950.     #define VERT_NORM
  951.     #define FACET_COLOR
  952.     #define FUNCTION    rmqBVnFc 
  953. #endif
  954.  
  955. #ifdef qBVnFcT
  956.     #define BATCH
  957.     #define VERT_NORM
  958.     #define TEXTURE
  959.     #define FACET_COLOR
  960.     #define FUNCTION    rmqBVnFcT 
  961. #endif
  962.  
  963. #ifdef qBVnT
  964.     #define BATCH
  965.     #define VERT_NORM
  966.     #define TEXTURE
  967.     #define FUNCTION    rmqBVnT 
  968. #endif
  969.  
  970. #ifdef qBVnVc
  971.     #define BATCH
  972.     #define VERT_NORM
  973.     #define VERT_COLOR
  974.     #define FUNCTION    rmqBVnVc 
  975. #endif
  976.  
  977. #ifdef qBVnVcT
  978.     #define BATCH
  979.     #define VERT_NORM
  980.     #define VERT_COLOR
  981.     #define TEXTURE
  982.     #define FUNCTION    rmqBVnVcT 
  983. #endif
  984.  
  985. #ifdef qB2
  986.     #define BATCH
  987.     #define FUNCTION    rmqB2 
  988.     #define BY_TWO
  989. #endif
  990.  
  991. #ifdef qB2Fc
  992.     #define BATCH
  993.     #define FACET_COLOR
  994.     #define FUNCTION    rmqB2Fc 
  995.     #define BY_TWO
  996. #endif
  997.  
  998. #ifdef qB2FcT
  999.     #define BATCH
  1000.     #define TEXTURE
  1001.     #define FACET_COLOR
  1002.     #define FUNCTION    rmqB2FcT 
  1003.     #define BY_TWO
  1004. #endif
  1005.  
  1006. #ifdef qB2Fn
  1007.     #define BATCH
  1008.     #define FACET_NORM
  1009.     #define FUNCTION    rmqB2Fn 
  1010.     #define BY_TWO
  1011. #endif
  1012.  
  1013. #ifdef qB2FnFc
  1014.     #define BATCH
  1015.     #define FACET_NORM
  1016.     #define FACET_COLOR
  1017.     #define FUNCTION    rmqB2FnFc 
  1018.     #define BY_TWO
  1019. #endif
  1020.  
  1021. #ifdef qB2FnFcT
  1022.     #define BATCH
  1023.     #define FACET_NORM
  1024.     #define TEXTURE
  1025.     #define FACET_COLOR
  1026.     #define FUNCTION    rmqB2FnFcT 
  1027.     #define BY_TWO
  1028. #endif
  1029.  
  1030. #ifdef qB2FnT
  1031.     #define BATCH
  1032.     #define FACET_NORM
  1033.     #define TEXTURE
  1034.     #define FUNCTION    rmqB2FnT 
  1035.     #define BY_TWO
  1036. #endif
  1037.  
  1038. #ifdef qB2FnVc
  1039.     #define BATCH
  1040.     #define VERT_COLOR
  1041.     #define FACET_NORM
  1042.     #define FUNCTION    rmqB2FnVc 
  1043.     #define BY_TWO
  1044. #endif
  1045.  
  1046. #ifdef qB2FnVcT
  1047.     #define BATCH
  1048.     #define VERT_COLOR
  1049.     #define FACET_NORM
  1050.     #define TEXTURE
  1051.     #define FUNCTION    rmqB2FnVcT 
  1052.     #define BY_TWO
  1053. #endif
  1054.  
  1055. #ifdef qB2T
  1056.     #define BATCH
  1057.     #define TEXTURE
  1058.     #define FUNCTION    rmqB2T 
  1059.     #define BY_TWO
  1060. #endif
  1061.  
  1062. #ifdef qB2Vc
  1063.     #define BATCH
  1064.     #define VERT_COLOR
  1065.     #define FUNCTION    rmqB2Vc 
  1066.     #define BY_TWO
  1067. #endif
  1068.  
  1069. #ifdef qB2VcT
  1070.     #define BATCH
  1071.     #define VERT_COLOR
  1072.     #define TEXTURE
  1073.     #define FUNCTION    rmqB2VcT 
  1074.     #define BY_TWO
  1075. #endif
  1076.  
  1077. #ifdef qB2Vn
  1078.     #define BATCH
  1079.     #define VERT_NORM
  1080.     #define FUNCTION    rmqB2Vn 
  1081.     #define BY_TWO
  1082. #endif
  1083.  
  1084. #ifdef qB2VnFc
  1085.     #define BATCH
  1086.     #define VERT_NORM
  1087.     #define FACET_COLOR
  1088.     #define FUNCTION    rmqB2VnFc 
  1089.     #define BY_TWO
  1090. #endif
  1091.  
  1092. #ifdef qB2VnFcT
  1093.     #define BATCH
  1094.     #define VERT_NORM
  1095.     #define TEXTURE
  1096.     #define FACET_COLOR
  1097.     #define FUNCTION    rmqB2VnFcT 
  1098.     #define BY_TWO
  1099. #endif
  1100.  
  1101. #ifdef qB2VnT
  1102.     #define BATCH
  1103.     #define VERT_NORM
  1104.     #define TEXTURE
  1105.     #define FUNCTION    rmqB2VnT 
  1106.     #define BY_TWO
  1107. #endif
  1108.  
  1109. #ifdef qB2VnVc
  1110.     #define BATCH
  1111.     #define VERT_NORM
  1112.     #define VERT_COLOR
  1113.     #define FUNCTION    rmqB2VnVc 
  1114.     #define BY_TWO
  1115. #endif
  1116.  
  1117. #ifdef qB2VnVcT
  1118.     #define BATCH
  1119.     #define VERT_NORM
  1120.     #define VERT_COLOR
  1121.     #define TEXTURE
  1122.     #define FUNCTION    rmqB2VnVcT 
  1123.     #define BY_TWO
  1124. #endif
  1125.  
  1126. #ifdef tNB
  1127.     #define FUNCTION    rmtNB 
  1128. #endif
  1129.  
  1130. #ifdef tNBFc
  1131.     #define FACET_COLOR
  1132.     #define FUNCTION    rmtNBFc 
  1133. #endif
  1134.  
  1135. #ifdef tNBFcT
  1136.     #define TEXTURE
  1137.     #define FACET_COLOR
  1138.     #define FUNCTION    rmtNBFcT 
  1139. #endif
  1140.  
  1141. #ifdef tNBFn
  1142.     #define FACET_NORM
  1143.     #define FUNCTION    rmtNBFn 
  1144. #endif
  1145.  
  1146. #ifdef tNBFnFc
  1147.     #define FACET_NORM
  1148.     #define FACET_COLOR
  1149.     #define FUNCTION    rmtNBFnFc 
  1150. #endif
  1151.  
  1152. #ifdef tNBFnFcT
  1153.     #define FACET_NORM
  1154.     #define TEXTURE
  1155.     #define FACET_COLOR
  1156.     #define FUNCTION    rmtNBFnFcT 
  1157. #endif
  1158.  
  1159. #ifdef tNBFnT
  1160.     #define FACET_NORM
  1161.     #define TEXTURE
  1162.     #define FUNCTION    rmtNBFnT 
  1163. #endif
  1164.  
  1165. #ifdef tNBFnVc
  1166.     #define VERT_COLOR
  1167.     #define FACET_NORM
  1168.     #define FUNCTION    rmtNBFnVc 
  1169. #endif
  1170.  
  1171. #ifdef tNBFnVcT
  1172.     #define VERT_COLOR
  1173.     #define FACET_NORM
  1174.     #define TEXTURE
  1175.     #define FUNCTION    rmtNBFnVcT 
  1176. #endif
  1177.  
  1178. #ifdef tNBT
  1179.     #define TEXTURE
  1180.     #define FUNCTION    rmtNBT 
  1181. #endif
  1182.  
  1183. #ifdef tNBVc
  1184.     #define VERT_COLOR
  1185.     #define FUNCTION    rmtNBVc 
  1186. #endif
  1187.  
  1188. #ifdef tNBVcT
  1189.     #define VERT_COLOR
  1190.     #define TEXTURE
  1191.     #define FUNCTION    rmtNBVcT 
  1192. #endif
  1193.  
  1194. #ifdef tNBVn
  1195.     #define VERT_NORM
  1196.     #define FUNCTION    rmtNBVn 
  1197. #endif
  1198.  
  1199. #ifdef tNBVnFc
  1200.     #define VERT_NORM
  1201.     #define FACET_COLOR
  1202.     #define FUNCTION    rmtNBVnFc 
  1203. #endif
  1204.  
  1205. #ifdef tNBVnFcT
  1206.     #define VERT_NORM
  1207.     #define TEXTURE
  1208.     #define FACET_COLOR
  1209.     #define FUNCTION    rmtNBVnFcT 
  1210. #endif
  1211.  
  1212. #ifdef tNBVnT
  1213.     #define VERT_NORM
  1214.     #define TEXTURE
  1215.     #define FUNCTION    rmtNBVnT 
  1216. #endif
  1217.  
  1218. #ifdef tNBVnVc
  1219.     #define VERT_NORM
  1220.     #define VERT_COLOR
  1221.     #define FUNCTION    rmtNBVnVc 
  1222. #endif
  1223.  
  1224. #ifdef tNBVnVcT
  1225.     #define VERT_NORM
  1226.     #define VERT_COLOR
  1227.     #define TEXTURE
  1228.     #define FUNCTION    rmtNBVnVcT 
  1229. #endif
  1230.  
  1231. #ifdef tB
  1232.     #define BATCH
  1233.     #define FUNCTION    rmtB 
  1234. #endif
  1235.  
  1236. #ifdef tBFc
  1237.     #define BATCH
  1238.     #define FACET_COLOR
  1239.     #define FUNCTION    rmtBFc 
  1240. #endif
  1241.  
  1242. #ifdef tBFcT
  1243.     #define BATCH
  1244.     #define TEXTURE
  1245.     #define FACET_COLOR
  1246.     #define FUNCTION    rmtBFcT 
  1247. #endif
  1248.  
  1249. #ifdef tBFn
  1250.     #define BATCH
  1251.     #define FACET_NORM
  1252.     #define FUNCTION    rmtBFn 
  1253. #endif
  1254.  
  1255. #ifdef tBFnFc
  1256.     #define BATCH
  1257.     #define FACET_NORM
  1258.     #define FACET_COLOR
  1259.     #define FUNCTION    rmtBFnFc 
  1260. #endif
  1261.  
  1262. #ifdef tBFnFcT
  1263.     #define BATCH
  1264.     #define FACET_NORM
  1265.     #define TEXTURE
  1266.     #define FACET_COLOR
  1267.     #define FUNCTION    rmtBFnFcT 
  1268. #endif
  1269.  
  1270. #ifdef tBFnT
  1271.     #define BATCH
  1272.     #define FACET_NORM
  1273.     #define TEXTURE
  1274.     #define FUNCTION    rmtBFnT 
  1275. #endif
  1276.  
  1277. #ifdef tBFnVc
  1278.     #define BATCH
  1279.     #define VERT_COLOR
  1280.     #define FACET_NORM
  1281.     #define FUNCTION    rmtBFnVc 
  1282. #endif
  1283.  
  1284. #ifdef tBFnVcT
  1285.     #define BATCH
  1286.     #define VERT_COLOR
  1287.     #define FACET_NORM
  1288.     #define TEXTURE
  1289.     #define FUNCTION    rmtBFnVcT 
  1290. #endif
  1291.  
  1292. #ifdef tBT
  1293.     #define BATCH
  1294.     #define TEXTURE
  1295.     #define FUNCTION    rmtBT 
  1296. #endif
  1297.  
  1298. #ifdef tBVc
  1299.     #define BATCH
  1300.     #define VERT_COLOR
  1301.     #define FUNCTION    rmtBVc 
  1302. #endif
  1303.  
  1304. #ifdef tBVcT
  1305.     #define BATCH
  1306.     #define VERT_COLOR
  1307.     #define TEXTURE
  1308.     #define FUNCTION    rmtBVcT 
  1309. #endif
  1310.  
  1311. #ifdef tBVn
  1312.     #define BATCH
  1313.     #define VERT_NORM
  1314.     #define FUNCTION    rmtBVn 
  1315. #endif
  1316.  
  1317. #ifdef tBVnFc
  1318.     #define BATCH
  1319.     #define VERT_NORM
  1320.     #define FACET_COLOR
  1321.     #define FUNCTION    rmtBVnFc 
  1322. #endif
  1323.  
  1324. #ifdef tBVnFcT
  1325.     #define BATCH
  1326.     #define VERT_NORM
  1327.     #define TEXTURE
  1328.     #define FACET_COLOR
  1329.     #define FUNCTION    rmtBVnFcT 
  1330. #endif
  1331.  
  1332. #ifdef tBVnT
  1333.     #define BATCH
  1334.     #define VERT_NORM
  1335.     #define TEXTURE
  1336.     #define FUNCTION    rmtBVnT 
  1337. #endif
  1338.  
  1339. #ifdef tBVnVc
  1340.     #define BATCH
  1341.     #define VERT_NORM
  1342.     #define VERT_COLOR
  1343.     #define FUNCTION    rmtBVnVc 
  1344. #endif
  1345.  
  1346. #ifdef tBVnVcT
  1347.     #define BATCH
  1348.     #define VERT_NORM
  1349.     #define VERT_COLOR
  1350.     #define TEXTURE
  1351.     #define FUNCTION    rmtBVnVcT 
  1352. #endif
  1353.  
  1354. #ifdef tB2
  1355.     #define BATCH
  1356.     #define FUNCTION    rmtB2 
  1357.     #define BY_TWO
  1358. #endif
  1359.  
  1360. #ifdef tB2Fc
  1361.     #define BATCH
  1362.     #define FACET_COLOR
  1363.     #define FUNCTION    rmtB2Fc 
  1364.     #define BY_TWO
  1365. #endif
  1366.  
  1367. #ifdef tB2FcT
  1368.     #define BATCH
  1369.     #define TEXTURE
  1370.     #define FACET_COLOR
  1371.     #define FUNCTION    rmtB2FcT 
  1372.     #define BY_TWO
  1373. #endif
  1374.  
  1375. #ifdef tB2Fn
  1376.     #define BATCH
  1377.     #define FACET_NORM
  1378.     #define FUNCTION    rmtB2Fn 
  1379.     #define BY_TWO
  1380. #endif
  1381.  
  1382. #ifdef tB2FnFc
  1383.     #define BATCH
  1384.     #define FACET_NORM
  1385.     #define FACET_COLOR
  1386.     #define FUNCTION    rmtB2FnFc 
  1387.     #define BY_TWO
  1388. #endif
  1389.  
  1390. #ifdef tB2FnFcT
  1391.     #define BATCH
  1392.     #define FACET_NORM
  1393.     #define TEXTURE
  1394.     #define FACET_COLOR
  1395.     #define FUNCTION    rmtB2FnFcT 
  1396.     #define BY_TWO
  1397. #endif
  1398.  
  1399. #ifdef tB2FnT
  1400.     #define BATCH
  1401.     #define FACET_NORM
  1402.     #define TEXTURE
  1403.     #define FUNCTION    rmtB2FnT 
  1404.     #define BY_TWO
  1405. #endif
  1406.  
  1407. #ifdef tB2FnVc
  1408.     #define BATCH
  1409.     #define VERT_COLOR
  1410.     #define FACET_NORM
  1411.     #define FUNCTION    rmtB2FnVc 
  1412.     #define BY_TWO
  1413. #endif
  1414.  
  1415. #ifdef tB2FnVcT
  1416.     #define BATCH
  1417.     #define VERT_COLOR
  1418.     #define FACET_NORM
  1419.     #define TEXTURE
  1420.     #define FUNCTION    rmtB2FnVcT 
  1421.     #define BY_TWO
  1422. #endif
  1423.  
  1424. #ifdef tB2T
  1425.     #define BATCH
  1426.     #define TEXTURE
  1427.     #define FUNCTION    rmtB2T 
  1428.     #define BY_TWO
  1429. #endif
  1430.  
  1431. #ifdef tB2Vc
  1432.     #define BATCH
  1433.     #define VERT_COLOR
  1434.     #define FUNCTION    rmtB2Vc 
  1435.     #define BY_TWO
  1436. #endif
  1437.  
  1438. #ifdef tB2VcT
  1439.     #define BATCH
  1440.     #define VERT_COLOR
  1441.     #define TEXTURE
  1442.     #define FUNCTION    rmtB2VcT 
  1443.     #define BY_TWO
  1444. #endif
  1445.  
  1446. #ifdef tB2Vn
  1447.     #define BATCH
  1448.     #define VERT_NORM
  1449.     #define FUNCTION    rmtB2Vn 
  1450.     #define BY_TWO
  1451. #endif
  1452.  
  1453. #ifdef tB2VnFc
  1454.     #define BATCH
  1455.     #define VERT_NORM
  1456.     #define FACET_COLOR
  1457.     #define FUNCTION    rmtB2VnFc 
  1458.     #define BY_TWO
  1459. #endif
  1460.  
  1461. #ifdef tB2VnFcT
  1462.     #define BATCH
  1463.     #define VERT_NORM
  1464.     #define TEXTURE
  1465.     #define FACET_COLOR
  1466.     #define FUNCTION    rmtB2VnFcT 
  1467.     #define BY_TWO
  1468. #endif
  1469.  
  1470. #ifdef tB2VnT
  1471.     #define BATCH
  1472.     #define VERT_NORM
  1473.     #define TEXTURE
  1474.     #define FUNCTION    rmtB2VnT 
  1475.     #define BY_TWO
  1476. #endif
  1477.  
  1478. #ifdef tB2VnVc
  1479.     #define BATCH
  1480.     #define VERT_NORM
  1481.     #define VERT_COLOR
  1482.     #define FUNCTION    rmtB2VnVc 
  1483.     #define BY_TWO
  1484. #endif
  1485.  
  1486. #ifdef tB2VnVcT
  1487.     #define BATCH
  1488.     #define VERT_NORM
  1489.     #define VERT_COLOR
  1490.     #define TEXTURE
  1491.     #define FUNCTION    rmtB2VnVcT 
  1492.     #define BY_TWO
  1493. #endif
  1494.  
  1495. #ifdef mE
  1496.     #define EXTERNAL
  1497.     #define FUNCTION    rmmE 
  1498. #endif
  1499.  
  1500. #ifdef mEFc
  1501.     #define EXTERNAL
  1502.     #define FACET_COLOR
  1503.     #define FUNCTION    rmmEFc 
  1504. #endif
  1505.  
  1506. #ifdef mEFcT
  1507.     #define EXTERNAL
  1508.     #define TEXTURE
  1509.     #define FACET_COLOR
  1510.     #define FUNCTION    rmmEFcT 
  1511. #endif
  1512.  
  1513. #ifdef mEFn
  1514.     #define EXTERNAL
  1515.     #define FACET_NORM
  1516.     #define FUNCTION    rmmEFn 
  1517. #endif
  1518.  
  1519. #ifdef mEFnFc
  1520.     #define EXTERNAL
  1521.     #define FACET_NORM
  1522.     #define FACET_COLOR
  1523.     #define FUNCTION    rmmEFnFc 
  1524. #endif
  1525.  
  1526. #ifdef mEFnFcT
  1527.     #define EXTERNAL
  1528.     #define FACET_NORM
  1529.     #define TEXTURE
  1530.     #define FACET_COLOR
  1531.     #define FUNCTION    rmmEFnFcT 
  1532. #endif
  1533.  
  1534. #ifdef mEFnT
  1535.     #define EXTERNAL
  1536.     #define FACET_NORM
  1537.     #define TEXTURE
  1538.     #define FUNCTION    rmmEFnT 
  1539. #endif
  1540.  
  1541. #ifdef mEFnVc
  1542.     #define EXTERNAL
  1543.     #define VERT_COLOR
  1544.     #define FACET_NORM
  1545.     #define FUNCTION    rmmEFnVc 
  1546. #endif
  1547.  
  1548. #ifdef mEFnVcT
  1549.     #define EXTERNAL
  1550.     #define VERT_COLOR
  1551.     #define FACET_NORM
  1552.     #define TEXTURE
  1553.     #define FUNCTION    rmmEFnVcT 
  1554. #endif
  1555.  
  1556. #ifdef mET
  1557.     #define EXTERNAL
  1558.     #define TEXTURE
  1559.     #define FUNCTION    rmmET 
  1560. #endif
  1561.  
  1562. #ifdef mEVc
  1563.     #define EXTERNAL
  1564.     #define VERT_COLOR
  1565.     #define FUNCTION    rmmEVc 
  1566. #endif
  1567.  
  1568. #ifdef mEVcT
  1569.     #define EXTERNAL
  1570.     #define VERT_COLOR
  1571.     #define TEXTURE
  1572.     #define FUNCTION    rmmEVcT 
  1573. #endif
  1574.  
  1575. #ifdef mEVn
  1576.     #define EXTERNAL
  1577.     #define VERT_NORM
  1578.     #define FUNCTION    rmmEVn 
  1579. #endif
  1580.  
  1581. #ifdef mEVnFc
  1582.     #define EXTERNAL
  1583.     #define VERT_NORM
  1584.     #define FACET_COLOR
  1585.     #define FUNCTION    rmmEVnFc 
  1586. #endif
  1587.  
  1588. #ifdef mEVnFcT
  1589.     #define EXTERNAL
  1590.     #define VERT_NORM
  1591.     #define TEXTURE
  1592.     #define FACET_COLOR
  1593.     #define FUNCTION    rmmEVnFcT 
  1594. #endif
  1595.  
  1596. #ifdef mEVnT
  1597.     #define EXTERNAL
  1598.     #define VERT_NORM
  1599.     #define TEXTURE
  1600.     #define FUNCTION    rmmEVnT 
  1601. #endif
  1602.  
  1603. #ifdef mEVnVc
  1604.     #define EXTERNAL
  1605.     #define VERT_NORM
  1606.     #define VERT_COLOR
  1607.     #define FUNCTION    rmmEVnVc 
  1608. #endif
  1609.  
  1610. #ifdef mEVnVcT
  1611.     #define EXTERNAL
  1612.     #define VERT_NORM
  1613.     #define VERT_COLOR
  1614.     #define TEXTURE
  1615.     #define FUNCTION    rmmEVnVcT 
  1616. #endif
  1617.  
  1618. #ifdef pE
  1619.     #define EXTERNAL
  1620.     #define FUNCTION    rmpE 
  1621. #endif
  1622.  
  1623. #ifdef pEFc
  1624.     #define EXTERNAL
  1625.     #define FACET_COLOR
  1626.     #define FUNCTION    rmpEFc 
  1627. #endif
  1628.  
  1629. #ifdef pEFcT
  1630.     #define EXTERNAL
  1631.     #define TEXTURE
  1632.     #define FACET_COLOR
  1633.     #define FUNCTION    rmpEFcT 
  1634. #endif
  1635.  
  1636. #ifdef pEFn
  1637.     #define EXTERNAL
  1638.     #define FACET_NORM
  1639.     #define FUNCTION    rmpEFn 
  1640. #endif
  1641.  
  1642. #ifdef pEFnFc
  1643.     #define EXTERNAL
  1644.     #define FACET_NORM
  1645.     #define FACET_COLOR
  1646.     #define FUNCTION    rmpEFnFc 
  1647. #endif
  1648.  
  1649. #ifdef pEFnFcT
  1650.     #define EXTERNAL
  1651.     #define FACET_NORM
  1652.     #define TEXTURE
  1653.     #define FACET_COLOR
  1654.     #define FUNCTION    rmpEFnFcT 
  1655. #endif
  1656.  
  1657. #ifdef pEFnT
  1658.     #define EXTERNAL
  1659.     #define FACET_NORM
  1660.     #define TEXTURE
  1661.     #define FUNCTION    rmpEFnT 
  1662. #endif
  1663.  
  1664. #ifdef pEFnVc
  1665.     #define EXTERNAL
  1666.     #define VERT_COLOR
  1667.     #define FACET_NORM
  1668.     #define FUNCTION    rmpEFnVc 
  1669. #endif
  1670.  
  1671. #ifdef pEFnVcT
  1672.     #define EXTERNAL
  1673.     #define VERT_COLOR
  1674.     #define FACET_NORM
  1675.     #define TEXTURE
  1676.     #define FUNCTION    rmpEFnVcT 
  1677. #endif
  1678.  
  1679. #ifdef pET
  1680.     #define EXTERNAL
  1681.     #define TEXTURE
  1682.     #define FUNCTION    rmpET 
  1683. #endif
  1684.  
  1685. #ifdef pEVc
  1686.     #define EXTERNAL
  1687.     #define VERT_COLOR
  1688.     #define FUNCTION    rmpEVc 
  1689. #endif
  1690.  
  1691. #ifdef pEVcT
  1692.     #define EXTERNAL
  1693.     #define VERT_COLOR
  1694.     #define TEXTURE
  1695.     #define FUNCTION    rmpEVcT 
  1696. #endif
  1697.  
  1698. #ifdef pEVn
  1699.     #define EXTERNAL
  1700.     #define VERT_NORM
  1701.     #define FUNCTION    rmpEVn 
  1702. #endif
  1703.  
  1704. #ifdef pEVnFc
  1705.     #define EXTERNAL
  1706.     #define VERT_NORM
  1707.     #define FACET_COLOR
  1708.     #define FUNCTION    rmpEVnFc 
  1709. #endif
  1710.  
  1711. #ifdef pEVnFcT
  1712.     #define EXTERNAL
  1713.     #define VERT_NORM
  1714.     #define TEXTURE
  1715.     #define FACET_COLOR
  1716.     #define FUNCTION    rmpEVnFcT 
  1717. #endif
  1718.  
  1719. #ifdef pEVnT
  1720.     #define EXTERNAL
  1721.     #define VERT_NORM
  1722.     #define TEXTURE
  1723.     #define FUNCTION    rmpEVnT 
  1724. #endif
  1725.  
  1726. #ifdef pEVnVc
  1727.     #define EXTERNAL
  1728.     #define VERT_NORM
  1729.     #define VERT_COLOR
  1730.     #define FUNCTION    rmpEVnVc 
  1731. #endif
  1732.  
  1733. #ifdef pEVnVcT
  1734.     #define EXTERNAL
  1735.     #define VERT_NORM
  1736.     #define VERT_COLOR
  1737.     #define TEXTURE
  1738.     #define FUNCTION    rmpEVnVcT 
  1739. #endif
  1740.  
  1741. #ifdef qE
  1742.     #define EXTERNAL
  1743.     #define FUNCTION    rmqE 
  1744. #endif
  1745.  
  1746. #ifdef qEFc
  1747.     #define EXTERNAL
  1748.     #define FACET_COLOR
  1749.     #define FUNCTION    rmqEFc 
  1750. #endif
  1751.  
  1752. #ifdef qEFcT
  1753.     #define EXTERNAL
  1754.     #define TEXTURE
  1755.     #define FACET_COLOR
  1756.     #define FUNCTION    rmqEFcT 
  1757. #endif
  1758.  
  1759. #ifdef qEFn
  1760.     #define EXTERNAL
  1761.     #define FACET_NORM
  1762.     #define FUNCTION    rmqEFn 
  1763. #endif
  1764.  
  1765. #ifdef qEFnFc
  1766.     #define EXTERNAL
  1767.     #define FACET_NORM
  1768.     #define FACET_COLOR
  1769.     #define FUNCTION    rmqEFnFc 
  1770. #endif
  1771.  
  1772. #ifdef qEFnFcT
  1773.     #define EXTERNAL
  1774.     #define FACET_NORM
  1775.     #define TEXTURE
  1776.     #define FACET_COLOR
  1777.     #define FUNCTION    rmqEFnFcT 
  1778. #endif
  1779.  
  1780. #ifdef qEFnT
  1781.     #define EXTERNAL
  1782.     #define FACET_NORM
  1783.     #define TEXTURE
  1784.     #define FUNCTION    rmqEFnT 
  1785. #endif
  1786.  
  1787. #ifdef qEFnVc
  1788.     #define EXTERNAL
  1789.     #define VERT_COLOR
  1790.     #define FACET_NORM
  1791.     #define FUNCTION    rmqEFnVc 
  1792. #endif
  1793.  
  1794. #ifdef qEFnVcT
  1795.     #define EXTERNAL
  1796.     #define VERT_COLOR
  1797.     #define FACET_NORM
  1798.     #define TEXTURE
  1799.     #define FUNCTION    rmqEFnVcT 
  1800. #endif
  1801.  
  1802. #ifdef qET
  1803.     #define EXTERNAL
  1804.     #define TEXTURE
  1805.     #define FUNCTION    rmqET 
  1806. #endif
  1807.  
  1808. #ifdef qEVc
  1809.     #define EXTERNAL
  1810.     #define VERT_COLOR
  1811.     #define FUNCTION    rmqEVc 
  1812. #endif
  1813.  
  1814. #ifdef qEVcT
  1815.     #define EXTERNAL
  1816.     #define VERT_COLOR
  1817.     #define TEXTURE
  1818.     #define FUNCTION    rmqEVcT 
  1819. #endif
  1820.  
  1821. #ifdef qEVn
  1822.     #define EXTERNAL
  1823.     #define VERT_NORM
  1824.     #define FUNCTION    rmqEVn 
  1825. #endif
  1826.  
  1827. #ifdef qEVnFc
  1828.     #define EXTERNAL
  1829.     #define VERT_NORM
  1830.     #define FACET_COLOR
  1831.     #define FUNCTION    rmqEVnFc 
  1832. #endif
  1833.  
  1834. #ifdef qEVnFcT
  1835.     #define EXTERNAL
  1836.     #define VERT_NORM
  1837.     #define TEXTURE
  1838.     #define FACET_COLOR
  1839.     #define FUNCTION    rmqEVnFcT 
  1840. #endif
  1841.  
  1842. #ifdef qEVnT
  1843.     #define EXTERNAL
  1844.     #define VERT_NORM
  1845.     #define TEXTURE
  1846.     #define FUNCTION    rmqEVnT 
  1847. #endif
  1848.  
  1849. #ifdef qEVnVc
  1850.     #define EXTERNAL
  1851.     #define VERT_NORM
  1852.     #define VERT_COLOR
  1853.     #define FUNCTION    rmqEVnVc 
  1854. #endif
  1855.  
  1856. #ifdef qEVnVcT
  1857.     #define EXTERNAL
  1858.     #define VERT_NORM
  1859.     #define VERT_COLOR
  1860.     #define TEXTURE
  1861.     #define FUNCTION    rmqEVnVcT 
  1862. #endif
  1863.  
  1864. #ifdef tE
  1865.     #define EXTERNAL
  1866.     #define FUNCTION    rmtE 
  1867. #endif
  1868.  
  1869. #ifdef tEFc
  1870.     #define EXTERNAL
  1871.     #define FACET_COLOR
  1872.     #define FUNCTION    rmtEFc 
  1873. #endif
  1874.  
  1875. #ifdef tEFcT
  1876.     #define EXTERNAL
  1877.     #define TEXTURE
  1878.     #define FACET_COLOR
  1879.     #define FUNCTION    rmtEFcT 
  1880. #endif
  1881.  
  1882. #ifdef tEFn
  1883.     #define EXTERNAL
  1884.     #define FACET_NORM
  1885.     #define FUNCTION    rmtEFn 
  1886. #endif
  1887.  
  1888. #ifdef tEFnFc
  1889.     #define EXTERNAL
  1890.     #define FACET_NORM
  1891.     #define FACET_COLOR
  1892.     #define FUNCTION    rmtEFnFc 
  1893. #endif
  1894.  
  1895. #ifdef tEFnFcT
  1896.     #define EXTERNAL
  1897.     #define FACET_NORM
  1898.     #define TEXTURE
  1899.     #define FACET_COLOR
  1900.     #define FUNCTION    rmtEFnFcT 
  1901. #endif
  1902.  
  1903. #ifdef tEFnT
  1904.     #define EXTERNAL
  1905.     #define FACET_NORM
  1906.     #define TEXTURE
  1907.     #define FUNCTION    rmtEFnT 
  1908. #endif
  1909.  
  1910. #ifdef tEFnVc
  1911.     #define EXTERNAL
  1912.     #define VERT_COLOR
  1913.     #define FACET_NORM
  1914.     #define FUNCTION    rmtEFnVc 
  1915. #endif
  1916.  
  1917. #ifdef tEFnVcT
  1918.     #define EXTERNAL
  1919.     #define VERT_COLOR
  1920.     #define FACET_NORM
  1921.     #define TEXTURE
  1922.     #define FUNCTION    rmtEFnVcT 
  1923. #endif
  1924.  
  1925. #ifdef tET
  1926.     #define EXTERNAL
  1927.     #define TEXTURE
  1928.     #define FUNCTION    rmtET 
  1929. #endif
  1930.  
  1931. #ifdef tEVc
  1932.     #define EXTERNAL
  1933.     #define VERT_COLOR
  1934.     #define FUNCTION    rmtEVc 
  1935. #endif
  1936.  
  1937. #ifdef tEVcT
  1938.     #define EXTERNAL
  1939.     #define VERT_COLOR
  1940.     #define TEXTURE
  1941.     #define FUNCTION    rmtEVcT 
  1942. #endif
  1943.  
  1944. #ifdef tEVn
  1945.     #define EXTERNAL
  1946.     #define VERT_NORM
  1947.     #define FUNCTION    rmtEVn 
  1948. #endif
  1949.  
  1950. #ifdef tEVnFc
  1951.     #define EXTERNAL
  1952.     #define VERT_NORM
  1953.     #define FACET_COLOR
  1954.     #define FUNCTION    rmtEVnFc 
  1955. #endif
  1956.  
  1957. #ifdef tEVnFcT
  1958.     #define EXTERNAL
  1959.     #define VERT_NORM
  1960.     #define TEXTURE
  1961.     #define FACET_COLOR
  1962.     #define FUNCTION    rmtEVnFcT 
  1963. #endif
  1964.  
  1965. #ifdef tEVnT
  1966.     #define EXTERNAL
  1967.     #define VERT_NORM
  1968.     #define TEXTURE
  1969.     #define FUNCTION    rmtEVnT 
  1970. #endif
  1971.  
  1972. #ifdef tEVnVc
  1973.     #define EXTERNAL
  1974.     #define VERT_NORM
  1975.     #define VERT_COLOR
  1976.     #define FUNCTION    rmtEVnVc 
  1977. #endif
  1978.  
  1979. #ifdef tEVnVcT
  1980.     #define EXTERNAL
  1981.     #define VERT_NORM
  1982.     #define VERT_COLOR
  1983.     #define TEXTURE
  1984.     #define FUNCTION    rmtEVnVcT 
  1985. #endif
  1986.  
  1987. #ifdef mE2
  1988.     #define BY_TWO
  1989.     #define EXTERNAL
  1990.     #define FUNCTION    rmmE2 
  1991. #endif
  1992.  
  1993. #ifdef mE2Fc
  1994.     #define BY_TWO
  1995.     #define EXTERNAL
  1996.     #define FACET_COLOR
  1997.     #define FUNCTION    rmmE2Fc 
  1998. #endif
  1999.  
  2000. #ifdef mE2FcT
  2001.     #define BY_TWO
  2002.     #define EXTERNAL
  2003.     #define TEXTURE
  2004.     #define FACET_COLOR
  2005.     #define FUNCTION    rmmE2FcT 
  2006. #endif
  2007.  
  2008. #ifdef mE2Fn
  2009.     #define BY_TWO
  2010.     #define EXTERNAL
  2011.     #define FACET_NORM
  2012.     #define FUNCTION    rmmE2Fn 
  2013. #endif
  2014.  
  2015. #ifdef mE2FnFc
  2016.     #define BY_TWO
  2017.     #define EXTERNAL
  2018.     #define FACET_NORM
  2019.     #define FACET_COLOR
  2020.     #define FUNCTION    rmmE2FnFc 
  2021. #endif
  2022.  
  2023. #ifdef mE2FnFcT
  2024.     #define BY_TWO
  2025.     #define EXTERNAL
  2026.     #define FACET_NORM
  2027.     #define TEXTURE
  2028.     #define FACET_COLOR
  2029.     #define FUNCTION    rmmE2FnFcT 
  2030. #endif
  2031.  
  2032. #ifdef mE2FnT
  2033.     #define BY_TWO
  2034.     #define EXTERNAL
  2035.     #define FACET_NORM
  2036.     #define TEXTURE
  2037.     #define FUNCTION    rmmE2FnT 
  2038. #endif
  2039.  
  2040. #ifdef mE2FnVc
  2041.     #define BY_TWO
  2042.     #define EXTERNAL
  2043.     #define VERT_COLOR
  2044.     #define FACET_NORM
  2045.     #define FUNCTION    rmmE2FnVc 
  2046. #endif
  2047.  
  2048. #ifdef mE2FnVcT
  2049.     #define BY_TWO
  2050.     #define EXTERNAL
  2051.     #define VERT_COLOR
  2052.     #define FACET_NORM
  2053.     #define TEXTURE
  2054.     #define FUNCTION    rmmE2FnVcT 
  2055. #endif
  2056.  
  2057. #ifdef mE2T
  2058.     #define BY_TWO
  2059.     #define EXTERNAL
  2060.     #define TEXTURE
  2061.     #define FUNCTION    rmmE2T 
  2062. #endif
  2063.  
  2064. #ifdef mE2Vc
  2065.     #define BY_TWO
  2066.     #define EXTERNAL
  2067.     #define VERT_COLOR
  2068.     #define FUNCTION    rmmE2Vc 
  2069. #endif
  2070.  
  2071. #ifdef mE2VcT
  2072.     #define BY_TWO
  2073.     #define EXTERNAL
  2074.     #define VERT_COLOR
  2075.     #define TEXTURE
  2076.     #define FUNCTION    rmmE2VcT 
  2077. #endif
  2078.  
  2079. #ifdef mE2Vn
  2080.     #define BY_TWO
  2081.     #define EXTERNAL
  2082.     #define VERT_NORM
  2083.     #define FUNCTION    rmmE2Vn 
  2084. #endif
  2085.  
  2086. #ifdef mE2VnFc
  2087.     #define BY_TWO
  2088.     #define EXTERNAL
  2089.     #define VERT_NORM
  2090.     #define FACET_COLOR
  2091.     #define FUNCTION    rmmE2VnFc 
  2092. #endif
  2093.  
  2094. #ifdef mE2VnFcT
  2095.     #define BY_TWO
  2096.     #define EXTERNAL
  2097.     #define VERT_NORM
  2098.     #define TEXTURE
  2099.     #define FACET_COLOR
  2100.     #define FUNCTION    rmmE2VnFcT 
  2101. #endif
  2102.  
  2103. #ifdef mE2VnT
  2104.     #define BY_TWO
  2105.     #define EXTERNAL
  2106.     #define VERT_NORM
  2107.     #define TEXTURE
  2108.     #define FUNCTION    rmmE2VnT 
  2109. #endif
  2110.  
  2111. #ifdef mE2VnVc
  2112.     #define BY_TWO
  2113.     #define EXTERNAL
  2114.     #define VERT_NORM
  2115.     #define VERT_COLOR
  2116.     #define FUNCTION    rmmE2VnVc 
  2117. #endif
  2118.  
  2119. #ifdef mE2VnVcT
  2120.     #define BY_TWO
  2121.     #define EXTERNAL
  2122.     #define VERT_NORM
  2123.     #define VERT_COLOR
  2124.     #define TEXTURE
  2125.     #define FUNCTION    rmmE2VnVcT 
  2126. #endif
  2127.  
  2128. #ifdef pE2
  2129.     #define BY_TWO
  2130.     #define EXTERNAL
  2131.     #define FUNCTION    rmpE2 
  2132. #endif
  2133.  
  2134. #ifdef pE2Fc
  2135.     #define BY_TWO
  2136.     #define EXTERNAL
  2137.     #define FACET_COLOR
  2138.     #define FUNCTION    rmpE2Fc 
  2139. #endif
  2140.  
  2141. #ifdef pE2FcT
  2142.     #define BY_TWO
  2143.     #define EXTERNAL
  2144.     #define TEXTURE
  2145.     #define FACET_COLOR
  2146.     #define FUNCTION    rmpE2FcT 
  2147. #endif
  2148.  
  2149. #ifdef pE2Fn
  2150.     #define BY_TWO
  2151.     #define EXTERNAL
  2152.     #define FACET_NORM
  2153.     #define FUNCTION    rmpE2Fn 
  2154. #endif
  2155.  
  2156. #ifdef pE2FnFc
  2157.     #define BY_TWO
  2158.     #define EXTERNAL
  2159.     #define FACET_NORM
  2160.     #define FACET_COLOR
  2161.     #define FUNCTION    rmpE2FnFc 
  2162. #endif
  2163.  
  2164. #ifdef pE2FnFcT
  2165.     #define BY_TWO
  2166.     #define EXTERNAL
  2167.     #define FACET_NORM
  2168.     #define TEXTURE
  2169.     #define FACET_COLOR
  2170.     #define FUNCTION    rmpE2FnFcT 
  2171. #endif
  2172.  
  2173. #ifdef pE2FnT
  2174.     #define BY_TWO
  2175.     #define EXTERNAL
  2176.     #define FACET_NORM
  2177.     #define TEXTURE
  2178.     #define FUNCTION    rmpE2FnT 
  2179. #endif
  2180.  
  2181. #ifdef pE2FnVc
  2182.     #define BY_TWO
  2183.     #define EXTERNAL
  2184.     #define VERT_COLOR
  2185.     #define FACET_NORM
  2186.     #define FUNCTION    rmpE2FnVc 
  2187. #endif
  2188.  
  2189. #ifdef pE2FnVcT
  2190.     #define BY_TWO
  2191.     #define EXTERNAL
  2192.     #define VERT_COLOR
  2193.     #define FACET_NORM
  2194.     #define TEXTURE
  2195.     #define FUNCTION    rmpE2FnVcT 
  2196. #endif
  2197.  
  2198. #ifdef pE2T
  2199.     #define BY_TWO
  2200.     #define EXTERNAL
  2201.     #define TEXTURE
  2202.     #define FUNCTION    rmpE2T 
  2203. #endif
  2204.  
  2205. #ifdef pE2Vc
  2206.     #define BY_TWO
  2207.     #define EXTERNAL
  2208.     #define VERT_COLOR
  2209.     #define FUNCTION    rmpE2Vc 
  2210. #endif
  2211.  
  2212. #ifdef pE2VcT
  2213.     #define BY_TWO
  2214.     #define EXTERNAL
  2215.     #define VERT_COLOR
  2216.     #define TEXTURE
  2217.     #define FUNCTION    rmpE2VcT 
  2218. #endif
  2219.  
  2220. #ifdef pE2Vn
  2221.     #define BY_TWO
  2222.     #define EXTERNAL
  2223.     #define VERT_NORM
  2224.     #define FUNCTION    rmpE2Vn 
  2225. #endif
  2226.  
  2227. #ifdef pE2VnFc
  2228.     #define BY_TWO
  2229.     #define EXTERNAL
  2230.     #define VERT_NORM
  2231.     #define FACET_COLOR
  2232.     #define FUNCTION    rmpE2VnFc 
  2233. #endif
  2234.  
  2235. #ifdef pE2VnFcT
  2236.     #define BY_TWO
  2237.     #define EXTERNAL
  2238.     #define VERT_NORM
  2239.     #define TEXTURE
  2240.     #define FACET_COLOR
  2241.     #define FUNCTION    rmpE2VnFcT 
  2242. #endif
  2243.  
  2244. #ifdef pE2VnT
  2245.     #define BY_TWO
  2246.     #define EXTERNAL
  2247.     #define VERT_NORM
  2248.     #define TEXTURE
  2249.     #define FUNCTION    rmpE2VnT 
  2250. #endif
  2251.  
  2252. #ifdef pE2VnVc
  2253.     #define BY_TWO
  2254.     #define EXTERNAL
  2255.     #define VERT_NORM
  2256.     #define VERT_COLOR
  2257.     #define FUNCTION    rmpE2VnVc 
  2258. #endif
  2259.  
  2260. #ifdef pE2VnVcT
  2261.     #define BY_TWO
  2262.     #define EXTERNAL
  2263.     #define VERT_NORM
  2264.     #define VERT_COLOR
  2265.     #define TEXTURE
  2266.     #define FUNCTION    rmpE2VnVcT 
  2267. #endif
  2268.  
  2269. #ifdef qE2
  2270.     #define BY_TWO
  2271.     #define EXTERNAL
  2272.     #define FUNCTION    rmqE2 
  2273. #endif
  2274.  
  2275. #ifdef qE2Fc
  2276.     #define BY_TWO
  2277.     #define EXTERNAL
  2278.     #define FACET_COLOR
  2279.     #define FUNCTION    rmqE2Fc 
  2280. #endif
  2281.  
  2282. #ifdef qE2FcT
  2283.     #define BY_TWO
  2284.     #define EXTERNAL
  2285.     #define TEXTURE
  2286.     #define FACET_COLOR
  2287.     #define FUNCTION    rmqE2FcT 
  2288. #endif
  2289.  
  2290. #ifdef qE2Fn
  2291.     #define BY_TWO
  2292.     #define EXTERNAL
  2293.     #define FACET_NORM
  2294.     #define FUNCTION    rmqE2Fn 
  2295. #endif
  2296.  
  2297. #ifdef qE2FnFc
  2298.     #define BY_TWO
  2299.     #define EXTERNAL
  2300.     #define FACET_NORM
  2301.     #define FACET_COLOR
  2302.     #define FUNCTION    rmqE2FnFc 
  2303. #endif
  2304.  
  2305. #ifdef qE2FnFcT
  2306.     #define BY_TWO
  2307.     #define EXTERNAL
  2308.     #define FACET_NORM
  2309.     #define TEXTURE
  2310.     #define FACET_COLOR
  2311.     #define FUNCTION    rmqE2FnFcT 
  2312. #endif
  2313.  
  2314. #ifdef qE2FnT
  2315.     #define BY_TWO
  2316.     #define EXTERNAL
  2317.     #define FACET_NORM
  2318.     #define TEXTURE
  2319.     #define FUNCTION    rmqE2FnT 
  2320. #endif
  2321.  
  2322. #ifdef qE2FnVc
  2323.     #define BY_TWO
  2324.     #define EXTERNAL
  2325.     #define VERT_COLOR
  2326.     #define FACET_NORM
  2327.     #define FUNCTION    rmqE2FnVc 
  2328. #endif
  2329.  
  2330. #ifdef qE2FnVcT
  2331.     #define BY_TWO
  2332.     #define EXTERNAL
  2333.     #define VERT_COLOR
  2334.     #define FACET_NORM
  2335.     #define TEXTURE
  2336.     #define FUNCTION    rmqE2FnVcT 
  2337. #endif
  2338.  
  2339. #ifdef qE2T
  2340.     #define BY_TWO
  2341.     #define EXTERNAL
  2342.     #define TEXTURE
  2343.     #define FUNCTION    rmqE2T 
  2344. #endif
  2345.  
  2346. #ifdef qE2Vc
  2347.     #define BY_TWO
  2348.     #define EXTERNAL
  2349.     #define VERT_COLOR
  2350.     #define FUNCTION    rmqE2Vc 
  2351. #endif
  2352.  
  2353. #ifdef qE2VcT
  2354.     #define BY_TWO
  2355.     #define EXTERNAL
  2356.     #define VERT_COLOR
  2357.     #define TEXTURE
  2358.     #define FUNCTION    rmqE2VcT 
  2359. #endif
  2360.  
  2361. #ifdef qE2Vn
  2362.     #define BY_TWO
  2363.     #define EXTERNAL
  2364.     #define VERT_NORM
  2365.     #define FUNCTION    rmqE2Vn 
  2366. #endif
  2367.  
  2368. #ifdef qE2VnFc
  2369.     #define BY_TWO
  2370.     #define EXTERNAL
  2371.     #define VERT_NORM
  2372.     #define FACET_COLOR
  2373.     #define FUNCTION    rmqE2VnFc 
  2374. #endif
  2375.  
  2376. #ifdef qE2VnFcT
  2377.     #define BY_TWO
  2378.     #define EXTERNAL
  2379.     #define VERT_NORM
  2380.     #define TEXTURE
  2381.     #define FACET_COLOR
  2382.     #define FUNCTION    rmqE2VnFcT 
  2383. #endif
  2384.  
  2385. #ifdef qE2VnT
  2386.     #define BY_TWO
  2387.     #define EXTERNAL
  2388.     #define VERT_NORM
  2389.     #define TEXTURE
  2390.     #define FUNCTION    rmqE2VnT 
  2391. #endif
  2392.  
  2393. #ifdef qE2VnVc
  2394.     #define BY_TWO
  2395.     #define EXTERNAL
  2396.     #define VERT_NORM
  2397.     #define VERT_COLOR
  2398.     #define FUNCTION    rmqE2VnVc 
  2399. #endif
  2400.  
  2401. #ifdef qE2VnVcT
  2402.     #define BY_TWO
  2403.     #define EXTERNAL
  2404.     #define VERT_NORM
  2405.     #define VERT_COLOR
  2406.     #define TEXTURE
  2407.     #define FUNCTION    rmqE2VnVcT 
  2408. #endif
  2409.  
  2410. #ifdef tE2
  2411.     #define BY_TWO
  2412.     #define EXTERNAL
  2413.     #define FUNCTION    rmtE2 
  2414. #endif
  2415.  
  2416. #ifdef tE2Fc
  2417.     #define BY_TWO
  2418.     #define EXTERNAL
  2419.     #define FACET_COLOR
  2420.     #define FUNCTION    rmtE2Fc 
  2421. #endif
  2422.  
  2423. #ifdef tE2FcT
  2424.     #define BY_TWO
  2425.     #define EXTERNAL
  2426.     #define TEXTURE
  2427.     #define FACET_COLOR
  2428.     #define FUNCTION    rmtE2FcT 
  2429. #endif
  2430.  
  2431. #ifdef tE2Fn
  2432.     #define BY_TWO
  2433.     #define EXTERNAL
  2434.     #define FACET_NORM
  2435.     #define FUNCTION    rmtE2Fn 
  2436. #endif
  2437.  
  2438. #ifdef tE2FnFc
  2439.     #define BY_TWO
  2440.     #define EXTERNAL
  2441.     #define FACET_NORM
  2442.     #define FACET_COLOR
  2443.     #define FUNCTION    rmtE2FnFc 
  2444. #endif
  2445.  
  2446. #ifdef tE2FnFcT
  2447.     #define BY_TWO
  2448.     #define EXTERNAL
  2449.     #define FACET_NORM
  2450.     #define TEXTURE
  2451.     #define FACET_COLOR
  2452.     #define FUNCTION    rmtE2FnFcT 
  2453. #endif
  2454.  
  2455. #ifdef tE2FnT
  2456.     #define BY_TWO
  2457.     #define EXTERNAL
  2458.     #define FACET_NORM
  2459.     #define TEXTURE
  2460.     #define FUNCTION    rmtE2FnT 
  2461. #endif
  2462.  
  2463. #ifdef tE2FnVc
  2464.     #define BY_TWO
  2465.     #define EXTERNAL
  2466.     #define VERT_COLOR
  2467.     #define FACET_NORM
  2468.     #define FUNCTION    rmtE2FnVc 
  2469. #endif
  2470.  
  2471. #ifdef tE2FnVcT
  2472.     #define BY_TWO
  2473.     #define EXTERNAL
  2474.     #define VERT_COLOR
  2475.     #define FACET_NORM
  2476.     #define TEXTURE
  2477.     #define FUNCTION    rmtE2FnVcT 
  2478. #endif
  2479.  
  2480. #ifdef tE2T
  2481.     #define BY_TWO
  2482.     #define EXTERNAL
  2483.     #define TEXTURE
  2484.     #define FUNCTION    rmtE2T 
  2485. #endif
  2486.  
  2487. #ifdef tE2Vc
  2488.     #define BY_TWO
  2489.     #define EXTERNAL
  2490.     #define VERT_COLOR
  2491.     #define FUNCTION    rmtE2Vc 
  2492. #endif
  2493.  
  2494. #ifdef tE2VcT
  2495.     #define BY_TWO
  2496.     #define EXTERNAL
  2497.     #define VERT_COLOR
  2498.     #define TEXTURE
  2499.     #define FUNCTION    rmtE2VcT 
  2500. #endif
  2501.  
  2502. #ifdef tE2Vn
  2503.     #define BY_TWO
  2504.     #define EXTERNAL
  2505.     #define VERT_NORM
  2506.     #define FUNCTION    rmtE2Vn 
  2507. #endif
  2508.  
  2509. #ifdef tE2VnFc
  2510.     #define BY_TWO
  2511.     #define EXTERNAL
  2512.     #define VERT_NORM
  2513.     #define FACET_COLOR
  2514.     #define FUNCTION    rmtE2VnFc 
  2515. #endif
  2516.  
  2517. #ifdef tE2VnFcT
  2518.     #define BY_TWO
  2519.     #define EXTERNAL
  2520.     #define VERT_NORM
  2521.     #define TEXTURE
  2522.     #define FACET_COLOR
  2523.     #define FUNCTION    rmtE2VnFcT 
  2524. #endif
  2525.  
  2526. #ifdef tE2VnT
  2527.     #define BY_TWO
  2528.     #define EXTERNAL
  2529.     #define VERT_NORM
  2530.     #define TEXTURE
  2531.     #define FUNCTION    rmtE2VnT 
  2532. #endif
  2533.  
  2534. #ifdef tE2VnVc
  2535.     #define BY_TWO
  2536.     #define EXTERNAL
  2537.     #define VERT_NORM
  2538.     #define VERT_COLOR
  2539.     #define FUNCTION    rmtE2VnVc 
  2540. #endif
  2541.  
  2542. #ifdef tE2VnVcT
  2543.     #define BY_TWO
  2544.     #define EXTERNAL
  2545.     #define VERT_NORM
  2546.     #define VERT_COLOR
  2547.     #define TEXTURE
  2548.     #define FUNCTION    rmtE2VnVcT 
  2549. #endif
  2550.  
  2551.  
  2552.  
  2553.  
  2554.  
  2555. /* Start of FUNCTION_CALLS additions  */
  2556.  
  2557.  
  2558.  
  2559. #ifdef pC4NB
  2560.     #define COLOR4
  2561.     #define FUNCTION    rmpC4NB 
  2562. #endif
  2563.  
  2564. #ifdef pC4NBFc
  2565.     #define COLOR4
  2566.     #define FACET_COLOR
  2567.     #define FUNCTION    rmpC4NBFc 
  2568. #endif
  2569.  
  2570. #ifdef pC4NBFcT
  2571.     #define COLOR4
  2572.     #define TEXTURE
  2573.     #define FACET_COLOR
  2574.     #define FUNCTION    rmpC4NBFcT 
  2575. #endif
  2576.  
  2577. #ifdef pC4NBFn
  2578.     #define COLOR4
  2579.     #define FACET_NORM
  2580.     #define FUNCTION    rmpC4NBFn 
  2581. #endif
  2582.  
  2583. #ifdef pC4NBFnFc
  2584.     #define COLOR4
  2585.     #define FACET_NORM
  2586.     #define FACET_COLOR
  2587.     #define FUNCTION    rmpC4NBFnFc 
  2588. #endif
  2589.  
  2590. #ifdef pC4NBFnFcT
  2591.     #define COLOR4
  2592.     #define FACET_NORM
  2593.     #define TEXTURE
  2594.     #define FACET_COLOR
  2595.     #define FUNCTION    rmpC4NBFnFcT 
  2596. #endif
  2597.  
  2598. #ifdef pC4NBFnT
  2599.     #define COLOR4
  2600.     #define FACET_NORM
  2601.     #define TEXTURE
  2602.     #define FUNCTION    rmpC4NBFnT 
  2603. #endif
  2604.  
  2605. #ifdef pC4NBFnVc
  2606.     #define COLOR4
  2607.     #define VERT_COLOR
  2608.     #define FACET_NORM
  2609.     #define FUNCTION    rmpC4NBFnVc 
  2610. #endif
  2611.  
  2612. #ifdef pC4NBFnVcT
  2613.     #define COLOR4
  2614.     #define VERT_COLOR
  2615.     #define FACET_NORM
  2616.     #define TEXTURE
  2617.     #define FUNCTION    rmpC4NBFnVcT 
  2618. #endif
  2619.  
  2620. #ifdef pC4NBT
  2621.     #define COLOR4
  2622.     #define TEXTURE
  2623.     #define FUNCTION    rmpC4NBT 
  2624. #endif
  2625.  
  2626. #ifdef pC4NBVc
  2627.     #define COLOR4
  2628.     #define VERT_COLOR
  2629.     #define FUNCTION    rmpC4NBVc 
  2630. #endif
  2631.  
  2632. #ifdef pC4NBVcT
  2633.     #define COLOR4
  2634.     #define VERT_COLOR
  2635.     #define TEXTURE
  2636.     #define FUNCTION    rmpC4NBVcT 
  2637. #endif
  2638.  
  2639. #ifdef pC4NBVn
  2640.     #define COLOR4
  2641.     #define VERT_NORM
  2642.     #define FUNCTION    rmpC4NBVn 
  2643. #endif
  2644.  
  2645. #ifdef pC4NBVnFc
  2646.     #define COLOR4
  2647.     #define VERT_NORM
  2648.     #define FACET_COLOR
  2649.     #define FUNCTION    rmpC4NBVnFc 
  2650. #endif
  2651.  
  2652. #ifdef pC4NBVnFcT
  2653.     #define COLOR4
  2654.     #define VERT_NORM
  2655.     #define TEXTURE
  2656.     #define FACET_COLOR
  2657.     #define FUNCTION    rmpC4NBVnFcT 
  2658. #endif
  2659.  
  2660. #ifdef pC4NBVnT
  2661.     #define COLOR4
  2662.     #define VERT_NORM
  2663.     #define TEXTURE
  2664.     #define FUNCTION    rmpC4NBVnT 
  2665. #endif
  2666.  
  2667. #ifdef pC4NBVnVc
  2668.     #define COLOR4
  2669.     #define VERT_NORM
  2670.     #define VERT_COLOR
  2671.     #define FUNCTION    rmpC4NBVnVc 
  2672. #endif
  2673.  
  2674. #ifdef pC4NBVnVcT
  2675.     #define COLOR4
  2676.     #define VERT_NORM
  2677.     #define VERT_COLOR
  2678.     #define TEXTURE
  2679.     #define FUNCTION    rmpC4NBVnVcT 
  2680. #endif
  2681.  
  2682. #ifdef mC4NB
  2683.     #define COLOR4
  2684.     #define FUNCTION    rmmC4NB 
  2685. #endif
  2686.  
  2687. #ifdef mC4NBFc
  2688.     #define COLOR4
  2689.     #define FACET_COLOR
  2690.     #define FUNCTION    rmmC4NBFc 
  2691. #endif
  2692.  
  2693. #ifdef mC4NBFcT
  2694.     #define COLOR4
  2695.     #define TEXTURE
  2696.     #define FACET_COLOR
  2697.     #define FUNCTION    rmmC4NBFcT 
  2698. #endif
  2699.  
  2700. #ifdef mC4NBFn
  2701.     #define COLOR4
  2702.     #define FACET_NORM
  2703.     #define FUNCTION    rmmC4NBFn 
  2704. #endif
  2705.  
  2706. #ifdef mC4NBFnFc
  2707.     #define COLOR4
  2708.     #define FACET_NORM
  2709.     #define FACET_COLOR
  2710.     #define FUNCTION    rmmC4NBFnFc 
  2711. #endif
  2712.  
  2713. #ifdef mC4NBFnFcT
  2714.     #define COLOR4
  2715.     #define FACET_NORM
  2716.     #define TEXTURE
  2717.     #define FACET_COLOR
  2718.     #define FUNCTION    rmmC4NBFnFcT 
  2719. #endif
  2720.  
  2721. #ifdef mC4NBFnT
  2722.     #define COLOR4
  2723.     #define FACET_NORM
  2724.     #define TEXTURE
  2725.     #define FUNCTION    rmmC4NBFnT 
  2726. #endif
  2727.  
  2728. #ifdef mC4NBFnVc
  2729.     #define COLOR4
  2730.     #define VERT_COLOR
  2731.     #define FACET_NORM
  2732.     #define FUNCTION    rmmC4NBFnVc 
  2733. #endif
  2734.  
  2735. #ifdef mC4NBFnVcT
  2736.     #define COLOR4
  2737.     #define VERT_COLOR
  2738.     #define FACET_NORM
  2739.     #define TEXTURE
  2740.     #define FUNCTION    rmmC4NBFnVcT 
  2741. #endif
  2742.  
  2743. #ifdef mC4NBT
  2744.     #define COLOR4
  2745.     #define TEXTURE
  2746.     #define FUNCTION    rmmC4NBT 
  2747. #endif
  2748.  
  2749. #ifdef mC4NBVc
  2750.     #define COLOR4
  2751.     #define VERT_COLOR
  2752.     #define FUNCTION    rmmC4NBVc 
  2753. #endif
  2754.  
  2755. #ifdef mC4NBVcT
  2756.     #define COLOR4
  2757.     #define VERT_COLOR
  2758.     #define TEXTURE
  2759.     #define FUNCTION    rmmC4NBVcT 
  2760. #endif
  2761.  
  2762. #ifdef mC4NBVn
  2763.     #define COLOR4
  2764.     #define VERT_NORM
  2765.     #define FUNCTION    rmmC4NBVn 
  2766. #endif
  2767.  
  2768. #ifdef mC4NBVnFc
  2769.     #define COLOR4
  2770.     #define VERT_NORM
  2771.     #define FACET_COLOR
  2772.     #define FUNCTION    rmmC4NBVnFc 
  2773. #endif
  2774.  
  2775. #ifdef mC4NBVnFcT
  2776.     #define COLOR4
  2777.     #define VERT_NORM
  2778.     #define TEXTURE
  2779.     #define FACET_COLOR
  2780.     #define FUNCTION    rmmC4NBVnFcT 
  2781. #endif
  2782.  
  2783. #ifdef mC4NBVnT
  2784.     #define COLOR4
  2785.     #define VERT_NORM
  2786.     #define TEXTURE
  2787.     #define FUNCTION    rmmC4NBVnT 
  2788. #endif
  2789.  
  2790. #ifdef mC4NBVnVc
  2791.     #define COLOR4
  2792.     #define VERT_NORM
  2793.     #define VERT_COLOR
  2794.     #define FUNCTION    rmmC4NBVnVc 
  2795. #endif
  2796.  
  2797. #ifdef mC4NBVnVcT
  2798.     #define COLOR4
  2799.     #define VERT_NORM
  2800.     #define VERT_COLOR
  2801.     #define TEXTURE
  2802.     #define FUNCTION    rmmC4NBVnVcT 
  2803. #endif
  2804.  
  2805. #ifdef pC4B
  2806.     #define COLOR4
  2807.     #define BATCH
  2808.     #define FUNCTION    rmpC4B 
  2809. #endif
  2810.  
  2811. #ifdef pC4BFc
  2812.     #define COLOR4
  2813.     #define BATCH
  2814.     #define FACET_COLOR
  2815.     #define FUNCTION    rmpC4BFc 
  2816. #endif
  2817.  
  2818. #ifdef pC4BFcT
  2819.     #define COLOR4
  2820.     #define BATCH
  2821.     #define TEXTURE
  2822.     #define FACET_COLOR
  2823.     #define FUNCTION    rmpC4BFcT 
  2824. #endif
  2825.  
  2826. #ifdef pC4BFn
  2827.     #define COLOR4
  2828.     #define BATCH
  2829.     #define FACET_NORM
  2830.     #define FUNCTION    rmpC4BFn 
  2831. #endif
  2832.  
  2833. #ifdef pC4BFnFc
  2834.     #define COLOR4
  2835.     #define BATCH
  2836.     #define FACET_NORM
  2837.     #define FACET_COLOR
  2838.     #define FUNCTION    rmpC4BFnFc 
  2839. #endif
  2840.  
  2841. #ifdef pC4BFnFcT
  2842.     #define COLOR4
  2843.     #define BATCH
  2844.     #define FACET_NORM
  2845.     #define TEXTURE
  2846.     #define FACET_COLOR
  2847.     #define FUNCTION    rmpC4BFnFcT 
  2848. #endif
  2849.  
  2850. #ifdef pC4BFnT
  2851.     #define COLOR4
  2852.     #define BATCH
  2853.     #define FACET_NORM
  2854.     #define TEXTURE
  2855.     #define FUNCTION    rmpC4BFnT 
  2856. #endif
  2857.  
  2858. #ifdef pC4BFnVc
  2859.     #define COLOR4
  2860.     #define BATCH
  2861.     #define VERT_COLOR
  2862.     #define FACET_NORM
  2863.     #define FUNCTION    rmpC4BFnVc 
  2864. #endif
  2865.  
  2866. #ifdef pC4BFnVcT
  2867.     #define COLOR4
  2868.     #define BATCH
  2869.     #define VERT_COLOR
  2870.     #define FACET_NORM
  2871.     #define TEXTURE
  2872.     #define FUNCTION    rmpC4BFnVcT 
  2873. #endif
  2874.  
  2875. #ifdef pC4BT
  2876.     #define COLOR4
  2877.     #define BATCH
  2878.     #define TEXTURE
  2879.     #define FUNCTION    rmpC4BT 
  2880. #endif
  2881.  
  2882. #ifdef pC4BVc
  2883.     #define COLOR4
  2884.     #define BATCH
  2885.     #define VERT_COLOR
  2886.     #define FUNCTION    rmpC4BVc 
  2887. #endif
  2888.  
  2889. #ifdef pC4BVcT
  2890.     #define COLOR4
  2891.     #define BATCH
  2892.     #define VERT_COLOR
  2893.     #define TEXTURE
  2894.     #define FUNCTION    rmpC4BVcT 
  2895. #endif
  2896.  
  2897. #ifdef pC4BVn
  2898.     #define COLOR4
  2899.     #define BATCH
  2900.     #define VERT_NORM
  2901.     #define FUNCTION    rmpC4BVn 
  2902. #endif
  2903.  
  2904. #ifdef pC4BVnFc
  2905.     #define COLOR4
  2906.     #define BATCH
  2907.     #define VERT_NORM
  2908.     #define FACET_COLOR
  2909.     #define FUNCTION    rmpC4BVnFc 
  2910. #endif
  2911.  
  2912. #ifdef pC4BVnFcT
  2913.     #define COLOR4
  2914.     #define BATCH
  2915.     #define VERT_NORM
  2916.     #define TEXTURE
  2917.     #define FACET_COLOR
  2918.     #define FUNCTION    rmpC4BVnFcT 
  2919. #endif
  2920.  
  2921. #ifdef pC4BVnT
  2922.     #define COLOR4
  2923.     #define BATCH
  2924.     #define VERT_NORM
  2925.     #define TEXTURE
  2926.     #define FUNCTION    rmpC4BVnT 
  2927. #endif
  2928.  
  2929. #ifdef pC4BVnVc
  2930.     #define COLOR4
  2931.     #define BATCH
  2932.     #define VERT_NORM
  2933.     #define VERT_COLOR
  2934.     #define FUNCTION    rmpC4BVnVc 
  2935. #endif
  2936.  
  2937. #ifdef pC4BVnVcT
  2938.     #define COLOR4
  2939.     #define BATCH
  2940.     #define VERT_NORM
  2941.     #define VERT_COLOR
  2942.     #define TEXTURE
  2943.     #define FUNCTION    rmpC4BVnVcT 
  2944. #endif
  2945.  
  2946. #ifdef pC4B2
  2947.     #define COLOR4
  2948.     #define BATCH
  2949.     #define FUNCTION    rmpC4B2 
  2950.     #define BY_TWO
  2951. #endif
  2952.  
  2953. #ifdef pC4B2Fc
  2954.     #define COLOR4
  2955.     #define BATCH
  2956.     #define FACET_COLOR
  2957.     #define FUNCTION    rmpC4B2Fc 
  2958.     #define BY_TWO
  2959. #endif
  2960.  
  2961. #ifdef pC4B2FcT
  2962.     #define COLOR4
  2963.     #define BATCH
  2964.     #define TEXTURE
  2965.     #define FACET_COLOR
  2966.     #define FUNCTION    rmpC4B2FcT 
  2967.     #define BY_TWO
  2968. #endif
  2969.  
  2970. #ifdef pC4B2Fn
  2971.     #define COLOR4
  2972.     #define BATCH
  2973.     #define FACET_NORM
  2974.     #define FUNCTION    rmpC4B2Fn 
  2975.     #define BY_TWO
  2976. #endif
  2977.  
  2978. #ifdef pC4B2FnFc
  2979.     #define COLOR4
  2980.     #define BATCH
  2981.     #define FACET_NORM
  2982.     #define FACET_COLOR
  2983.     #define FUNCTION    rmpC4B2FnFc 
  2984.     #define BY_TWO
  2985. #endif
  2986.  
  2987. #ifdef pC4B2FnFcT
  2988.     #define COLOR4
  2989.     #define BATCH
  2990.     #define FACET_NORM
  2991.     #define TEXTURE
  2992.     #define FACET_COLOR
  2993.     #define FUNCTION    rmpC4B2FnFcT 
  2994.     #define BY_TWO
  2995. #endif
  2996.  
  2997. #ifdef pC4B2FnT
  2998.     #define COLOR4
  2999.     #define BATCH
  3000.     #define FACET_NORM
  3001.     #define TEXTURE
  3002.     #define FUNCTION    rmpC4B2FnT 
  3003.     #define BY_TWO
  3004. #endif
  3005.  
  3006. #ifdef pC4B2FnVc
  3007.     #define COLOR4
  3008.     #define BATCH
  3009.     #define VERT_COLOR
  3010.     #define FACET_NORM
  3011.     #define FUNCTION    rmpC4B2FnVc 
  3012.     #define BY_TWO
  3013. #endif
  3014.  
  3015. #ifdef pC4B2FnVcT
  3016.     #define COLOR4
  3017.     #define BATCH
  3018.     #define VERT_COLOR
  3019.     #define FACET_NORM
  3020.     #define TEXTURE
  3021.     #define FUNCTION    rmpC4B2FnVcT 
  3022.     #define BY_TWO
  3023. #endif
  3024.  
  3025. #ifdef pC4B2T
  3026.     #define COLOR4
  3027.     #define BATCH
  3028.     #define TEXTURE
  3029.     #define FUNCTION    rmpC4B2T 
  3030.     #define BY_TWO
  3031. #endif
  3032.  
  3033. #ifdef pC4B2Vc
  3034.     #define COLOR4
  3035.     #define BATCH
  3036.     #define VERT_COLOR
  3037.     #define FUNCTION    rmpC4B2Vc 
  3038.     #define BY_TWO
  3039. #endif
  3040.  
  3041. #ifdef pC4B2VcT
  3042.     #define COLOR4
  3043.     #define BATCH
  3044.     #define VERT_COLOR
  3045.     #define TEXTURE
  3046.     #define FUNCTION    rmpC4B2VcT 
  3047.     #define BY_TWO
  3048. #endif
  3049.  
  3050. #ifdef pC4B2Vn
  3051.     #define COLOR4
  3052.     #define BATCH
  3053.     #define VERT_NORM
  3054.     #define FUNCTION    rmpC4B2Vn 
  3055.     #define BY_TWO
  3056. #endif
  3057.  
  3058. #ifdef pC4B2VnFc
  3059.     #define COLOR4
  3060.     #define BATCH
  3061.     #define VERT_NORM
  3062.     #define FACET_COLOR
  3063.     #define FUNCTION    rmpC4B2VnFc 
  3064.     #define BY_TWO
  3065. #endif
  3066.  
  3067. #ifdef pC4B2VnFcT
  3068.     #define COLOR4
  3069.     #define BATCH
  3070.     #define VERT_NORM
  3071.     #define TEXTURE
  3072.     #define FACET_COLOR
  3073.     #define FUNCTION    rmpC4B2VnFcT 
  3074.     #define BY_TWO
  3075. #endif
  3076.  
  3077. #ifdef pC4B2VnT
  3078.     #define COLOR4
  3079.     #define BATCH
  3080.     #define VERT_NORM
  3081.     #define TEXTURE
  3082.     #define FUNCTION    rmpC4B2VnT 
  3083.     #define BY_TWO
  3084. #endif
  3085.  
  3086. #ifdef pC4B2VnVc
  3087.     #define COLOR4
  3088.     #define BATCH
  3089.     #define VERT_NORM
  3090.     #define VERT_COLOR
  3091.     #define FUNCTION    rmpC4B2VnVc 
  3092.     #define BY_TWO
  3093. #endif
  3094.  
  3095. #ifdef pC4B2VnVcT
  3096.     #define COLOR4
  3097.     #define BATCH
  3098.     #define VERT_NORM
  3099.     #define VERT_COLOR
  3100.     #define TEXTURE
  3101.     #define FUNCTION    rmpC4B2VnVcT 
  3102.     #define BY_TWO
  3103. #endif
  3104.  
  3105. #ifdef mC4B2
  3106.     #define COLOR4
  3107.     #define BATCH
  3108.     #define FUNCTION    rmmC4B2 
  3109.     #define BY_TWO
  3110. #endif
  3111.  
  3112. #ifdef mC4B2Fc
  3113.     #define COLOR4
  3114.     #define BATCH
  3115.     #define FACET_COLOR
  3116.     #define FUNCTION    rmmC4B2Fc 
  3117.     #define BY_TWO
  3118. #endif
  3119.  
  3120. #ifdef mC4B2FcT
  3121.     #define COLOR4
  3122.     #define BATCH
  3123.     #define TEXTURE
  3124.     #define FACET_COLOR
  3125.     #define FUNCTION    rmmC4B2FcT 
  3126.     #define BY_TWO
  3127. #endif
  3128.  
  3129. #ifdef mC4B2Fn
  3130.     #define COLOR4
  3131.     #define BATCH
  3132.     #define FACET_NORM
  3133.     #define FUNCTION    rmmC4B2Fn 
  3134.     #define BY_TWO
  3135. #endif
  3136.  
  3137. #ifdef mC4B2FnFc
  3138.     #define COLOR4
  3139.     #define BATCH
  3140.     #define FACET_NORM
  3141.     #define FACET_COLOR
  3142.     #define FUNCTION    rmmC4B2FnFc 
  3143.     #define BY_TWO
  3144. #endif
  3145.  
  3146. #ifdef mC4B2FnFcT
  3147.     #define COLOR4
  3148.     #define BATCH
  3149.     #define FACET_NORM
  3150.     #define TEXTURE
  3151.     #define FACET_COLOR
  3152.     #define FUNCTION    rmmC4B2FnFcT 
  3153.     #define BY_TWO
  3154. #endif
  3155.  
  3156. #ifdef mC4B2FnT
  3157.     #define COLOR4
  3158.     #define BATCH
  3159.     #define FACET_NORM
  3160.     #define TEXTURE
  3161.     #define FUNCTION    rmmC4B2FnT 
  3162.     #define BY_TWO
  3163. #endif
  3164.  
  3165. #ifdef mC4B2FnVc
  3166.     #define COLOR4
  3167.     #define BATCH
  3168.     #define VERT_COLOR
  3169.     #define FACET_NORM
  3170.     #define FUNCTION    rmmC4B2FnVc 
  3171.     #define BY_TWO
  3172. #endif
  3173.  
  3174. #ifdef mC4B2FnVcT
  3175.     #define COLOR4
  3176.     #define BATCH
  3177.     #define VERT_COLOR
  3178.     #define FACET_NORM
  3179.     #define TEXTURE
  3180.     #define FUNCTION    rmmC4B2FnVcT 
  3181.     #define BY_TWO
  3182. #endif
  3183.  
  3184. #ifdef mC4B2T
  3185.     #define COLOR4
  3186.     #define BATCH
  3187.     #define TEXTURE
  3188.     #define FUNCTION    rmmC4B2T 
  3189.     #define BY_TWO
  3190. #endif
  3191.  
  3192. #ifdef mC4B2Vc
  3193.     #define COLOR4
  3194.     #define BATCH
  3195.     #define VERT_COLOR
  3196.     #define FUNCTION    rmmC4B2Vc 
  3197.     #define BY_TWO
  3198. #endif
  3199.  
  3200. #ifdef mC4B2VcT
  3201.     #define COLOR4
  3202.     #define BATCH
  3203.     #define VERT_COLOR
  3204.     #define TEXTURE
  3205.     #define FUNCTION    rmmC4B2VcT 
  3206.     #define BY_TWO
  3207. #endif
  3208.  
  3209. #ifdef mC4B2Vn
  3210.     #define COLOR4
  3211.     #define BATCH
  3212.     #define VERT_NORM
  3213.     #define FUNCTION    rmmC4B2Vn 
  3214.     #define BY_TWO
  3215. #endif
  3216.  
  3217. #ifdef mC4B2VnFc
  3218.     #define COLOR4
  3219.     #define BATCH
  3220.     #define VERT_NORM
  3221.     #define FACET_COLOR
  3222.     #define FUNCTION    rmmC4B2VnFc 
  3223.     #define BY_TWO
  3224. #endif
  3225.  
  3226. #ifdef mC4B2VnFcT
  3227.     #define COLOR4
  3228.     #define BATCH
  3229.     #define VERT_NORM
  3230.     #define TEXTURE
  3231.     #define FACET_COLOR
  3232.     #define FUNCTION    rmmC4B2VnFcT 
  3233.     #define BY_TWO
  3234. #endif
  3235.  
  3236. #ifdef mC4B2VnT
  3237.     #define COLOR4
  3238.     #define BATCH
  3239.     #define VERT_NORM
  3240.     #define TEXTURE
  3241.     #define FUNCTION    rmmC4B2VnT 
  3242.     #define BY_TWO
  3243. #endif
  3244.  
  3245. #ifdef mC4B2VnVc
  3246.     #define COLOR4
  3247.     #define BATCH
  3248.     #define VERT_NORM
  3249.     #define VERT_COLOR
  3250.     #define FUNCTION    rmmC4B2VnVc 
  3251.     #define BY_TWO
  3252. #endif
  3253.  
  3254. #ifdef mC4B2VnVcT
  3255.     #define COLOR4
  3256.     #define BATCH
  3257.     #define VERT_NORM
  3258.     #define VERT_COLOR
  3259.     #define TEXTURE
  3260.     #define FUNCTION    rmmC4B2VnVcT 
  3261.     #define BY_TWO
  3262. #endif
  3263.  
  3264. #ifdef qC4NB
  3265.     #define COLOR4
  3266.     #define FUNCTION    rmqC4NB 
  3267. #endif
  3268.  
  3269. #ifdef qC4NBFc
  3270.     #define COLOR4
  3271.     #define FACET_COLOR
  3272.     #define FUNCTION    rmqC4NBFc 
  3273. #endif
  3274.  
  3275. #ifdef qC4NBFcT
  3276.     #define COLOR4
  3277.     #define TEXTURE
  3278.     #define FACET_COLOR
  3279.     #define FUNCTION    rmqC4NBFcT 
  3280. #endif
  3281.  
  3282. #ifdef qC4NBFn
  3283.     #define COLOR4
  3284.     #define FACET_NORM
  3285.     #define FUNCTION    rmqC4NBFn 
  3286. #endif
  3287.  
  3288. #ifdef qC4NBFnFc
  3289.     #define COLOR4
  3290.     #define FACET_NORM
  3291.     #define FACET_COLOR
  3292.     #define FUNCTION    rmqC4NBFnFc 
  3293. #endif
  3294.  
  3295. #ifdef qC4NBFnFcT
  3296.     #define COLOR4
  3297.     #define FACET_NORM
  3298.     #define TEXTURE
  3299.     #define FACET_COLOR
  3300.     #define FUNCTION    rmqC4NBFnFcT 
  3301. #endif
  3302.  
  3303. #ifdef qC4NBFnT
  3304.     #define COLOR4
  3305.     #define FACET_NORM
  3306.     #define TEXTURE
  3307.     #define FUNCTION    rmqC4NBFnT 
  3308. #endif
  3309.  
  3310. #ifdef qC4NBFnVc
  3311.     #define COLOR4
  3312.     #define VERT_COLOR
  3313.     #define FACET_NORM
  3314.     #define FUNCTION    rmqC4NBFnVc 
  3315. #endif
  3316.  
  3317. #ifdef qC4NBFnVcT
  3318.     #define COLOR4
  3319.     #define VERT_COLOR
  3320.     #define FACET_NORM
  3321.     #define TEXTURE
  3322.     #define FUNCTION    rmqC4NBFnVcT 
  3323. #endif
  3324.  
  3325. #ifdef qC4NBT
  3326.     #define COLOR4
  3327.     #define TEXTURE
  3328.     #define FUNCTION    rmqC4NBT 
  3329. #endif
  3330.  
  3331. #ifdef qC4NBVc
  3332.     #define COLOR4
  3333.     #define VERT_COLOR
  3334.     #define FUNCTION    rmqC4NBVc 
  3335. #endif
  3336.  
  3337. #ifdef qC4NBVcT
  3338.     #define COLOR4
  3339.     #define VERT_COLOR
  3340.     #define TEXTURE
  3341.     #define FUNCTION    rmqC4NBVcT 
  3342. #endif
  3343.  
  3344. #ifdef qC4NBVn
  3345.     #define COLOR4
  3346.     #define VERT_NORM
  3347.     #define FUNCTION    rmqC4NBVn 
  3348. #endif
  3349.  
  3350. #ifdef qC4NBVnFc
  3351.     #define COLOR4
  3352.     #define VERT_NORM
  3353.     #define FACET_COLOR
  3354.     #define FUNCTION    rmqC4NBVnFc 
  3355. #endif
  3356.  
  3357. #ifdef qC4NBVnFcT
  3358.     #define COLOR4
  3359.     #define VERT_NORM
  3360.     #define TEXTURE
  3361.     #define FACET_COLOR
  3362.     #define FUNCTION    rmqC4NBVnFcT 
  3363. #endif
  3364.  
  3365. #ifdef qC4NBVnT
  3366.     #define COLOR4
  3367.     #define VERT_NORM
  3368.     #define TEXTURE
  3369.     #define FUNCTION    rmqC4NBVnT 
  3370. #endif
  3371.  
  3372. #ifdef qC4NBVnVc
  3373.     #define COLOR4
  3374.     #define VERT_NORM
  3375.     #define VERT_COLOR
  3376.     #define FUNCTION    rmqC4NBVnVc 
  3377. #endif
  3378.  
  3379. #ifdef qC4NBVnVcT
  3380.     #define COLOR4
  3381.     #define VERT_NORM
  3382.     #define VERT_COLOR
  3383.     #define TEXTURE
  3384.     #define FUNCTION    rmqC4NBVnVcT 
  3385. #endif
  3386.  
  3387. #ifdef qC4B
  3388.     #define COLOR4
  3389.     #define BATCH
  3390.     #define FUNCTION    rmqC4B 
  3391. #endif
  3392.  
  3393. #ifdef qC4BFc
  3394.     #define COLOR4
  3395.     #define BATCH
  3396.     #define FACET_COLOR
  3397.     #define FUNCTION    rmqC4BFc 
  3398. #endif
  3399.  
  3400. #ifdef qC4BFcT
  3401.     #define COLOR4
  3402.     #define BATCH
  3403.     #define TEXTURE
  3404.     #define FACET_COLOR
  3405.     #define FUNCTION    rmqC4BFcT 
  3406. #endif
  3407.  
  3408. #ifdef qC4BFn
  3409.     #define COLOR4
  3410.     #define BATCH
  3411.     #define FACET_NORM
  3412.     #define FUNCTION    rmqC4BFn 
  3413. #endif
  3414.  
  3415. #ifdef qC4BFnFc
  3416.     #define COLOR4
  3417.     #define BATCH
  3418.     #define FACET_NORM
  3419.     #define FACET_COLOR
  3420.     #define FUNCTION    rmqC4BFnFc 
  3421. #endif
  3422.  
  3423. #ifdef qC4BFnFcT
  3424.     #define COLOR4
  3425.     #define BATCH
  3426.     #define FACET_NORM
  3427.     #define TEXTURE
  3428.     #define FACET_COLOR
  3429.     #define FUNCTION    rmqC4BFnFcT 
  3430. #endif
  3431.  
  3432. #ifdef qC4BFnT
  3433.     #define COLOR4
  3434.     #define BATCH
  3435.     #define FACET_NORM
  3436.     #define TEXTURE
  3437.     #define FUNCTION    rmqC4BFnT 
  3438. #endif
  3439.  
  3440. #ifdef qC4BFnVc
  3441.     #define COLOR4
  3442.     #define BATCH
  3443.     #define VERT_COLOR
  3444.     #define FACET_NORM
  3445.     #define FUNCTION    rmqC4BFnVc 
  3446. #endif
  3447.  
  3448. #ifdef qC4BFnVcT
  3449.     #define COLOR4
  3450.     #define BATCH
  3451.     #define VERT_COLOR
  3452.     #define FACET_NORM
  3453.     #define TEXTURE
  3454.     #define FUNCTION    rmqC4BFnVcT 
  3455. #endif
  3456.  
  3457. #ifdef qC4BT
  3458.     #define COLOR4
  3459.     #define BATCH
  3460.     #define TEXTURE
  3461.     #define FUNCTION    rmqC4BT 
  3462. #endif
  3463.  
  3464. #ifdef qC4BVc
  3465.     #define COLOR4
  3466.     #define BATCH
  3467.     #define VERT_COLOR
  3468.     #define FUNCTION    rmqC4BVc 
  3469. #endif
  3470.  
  3471. #ifdef qC4BVcT
  3472.     #define COLOR4
  3473.     #define BATCH
  3474.     #define VERT_COLOR
  3475.     #define TEXTURE
  3476.     #define FUNCTION    rmqC4BVcT 
  3477. #endif
  3478.  
  3479. #ifdef qC4BVn
  3480.     #define COLOR4
  3481.     #define BATCH
  3482.     #define VERT_NORM
  3483.     #define FUNCTION    rmqC4BVn 
  3484. #endif
  3485.  
  3486. #ifdef qC4BVnFc
  3487.     #define COLOR4
  3488.     #define BATCH
  3489.     #define VERT_NORM
  3490.     #define FACET_COLOR
  3491.     #define FUNCTION    rmqC4BVnFc 
  3492. #endif
  3493.  
  3494. #ifdef qC4BVnFcT
  3495.     #define COLOR4
  3496.     #define BATCH
  3497.     #define VERT_NORM
  3498.     #define TEXTURE
  3499.     #define FACET_COLOR
  3500.     #define FUNCTION    rmqC4BVnFcT 
  3501. #endif
  3502.  
  3503. #ifdef qC4BVnT
  3504.     #define COLOR4
  3505.     #define BATCH
  3506.     #define VERT_NORM
  3507.     #define TEXTURE
  3508.     #define FUNCTION    rmqC4BVnT 
  3509. #endif
  3510.  
  3511. #ifdef qC4BVnVc
  3512.     #define COLOR4
  3513.     #define BATCH
  3514.     #define VERT_NORM
  3515.     #define VERT_COLOR
  3516.     #define FUNCTION    rmqC4BVnVc 
  3517. #endif
  3518.  
  3519. #ifdef qC4BVnVcT
  3520.     #define COLOR4
  3521.     #define BATCH
  3522.     #define VERT_NORM
  3523.     #define VERT_COLOR
  3524.     #define TEXTURE
  3525.     #define FUNCTION    rmqC4BVnVcT 
  3526. #endif
  3527.  
  3528. #ifdef qC4B2
  3529.     #define COLOR4
  3530.     #define BATCH
  3531.     #define FUNCTION    rmqC4B2 
  3532.     #define BY_TWO
  3533. #endif
  3534.  
  3535. #ifdef qC4B2Fc
  3536.     #define COLOR4
  3537.     #define BATCH
  3538.     #define FACET_COLOR
  3539.     #define FUNCTION    rmqC4B2Fc 
  3540.     #define BY_TWO
  3541. #endif
  3542.  
  3543. #ifdef qC4B2FcT
  3544.     #define COLOR4
  3545.     #define BATCH
  3546.     #define TEXTURE
  3547.     #define FACET_COLOR
  3548.     #define FUNCTION    rmqC4B2FcT 
  3549.     #define BY_TWO
  3550. #endif
  3551.  
  3552. #ifdef qC4B2Fn
  3553.     #define COLOR4
  3554.     #define BATCH
  3555.     #define FACET_NORM
  3556.     #define FUNCTION    rmqC4B2Fn 
  3557.     #define BY_TWO
  3558. #endif
  3559.  
  3560. #ifdef qC4B2FnFc
  3561.     #define COLOR4
  3562.     #define BATCH
  3563.     #define FACET_NORM
  3564.     #define FACET_COLOR
  3565.     #define FUNCTION    rmqC4B2FnFc 
  3566.     #define BY_TWO
  3567. #endif
  3568.  
  3569. #ifdef qC4B2FnFcT
  3570.     #define COLOR4
  3571.     #define BATCH
  3572.     #define FACET_NORM
  3573.     #define TEXTURE
  3574.     #define FACET_COLOR
  3575.     #define FUNCTION    rmqC4B2FnFcT 
  3576.     #define BY_TWO
  3577. #endif
  3578.  
  3579. #ifdef qC4B2FnT
  3580.     #define COLOR4
  3581.     #define BATCH
  3582.     #define FACET_NORM
  3583.     #define TEXTURE
  3584.     #define FUNCTION    rmqC4B2FnT 
  3585.     #define BY_TWO
  3586. #endif
  3587.  
  3588. #ifdef qC4B2FnVc
  3589.     #define COLOR4
  3590.     #define BATCH
  3591.     #define VERT_COLOR
  3592.     #define FACET_NORM
  3593.     #define FUNCTION    rmqC4B2FnVc 
  3594.     #define BY_TWO
  3595. #endif
  3596.  
  3597. #ifdef qC4B2FnVcT
  3598.     #define COLOR4
  3599.     #define BATCH
  3600.     #define VERT_COLOR
  3601.     #define FACET_NORM
  3602.     #define TEXTURE
  3603.     #define FUNCTION    rmqC4B2FnVcT 
  3604.     #define BY_TWO
  3605. #endif
  3606.  
  3607. #ifdef qC4B2T
  3608.     #define COLOR4
  3609.     #define BATCH
  3610.     #define TEXTURE
  3611.     #define FUNCTION    rmqC4B2T 
  3612.     #define BY_TWO
  3613. #endif
  3614.  
  3615. #ifdef qC4B2Vc
  3616.     #define COLOR4
  3617.     #define BATCH
  3618.     #define VERT_COLOR
  3619.     #define FUNCTION    rmqC4B2Vc 
  3620.     #define BY_TWO
  3621. #endif
  3622.  
  3623. #ifdef qC4B2VcT
  3624.     #define COLOR4
  3625.     #define BATCH
  3626.     #define VERT_COLOR
  3627.     #define TEXTURE
  3628.     #define FUNCTION    rmqC4B2VcT 
  3629.     #define BY_TWO
  3630. #endif
  3631.  
  3632. #ifdef qC4B2Vn
  3633.     #define COLOR4
  3634.     #define BATCH
  3635.     #define VERT_NORM
  3636.     #define FUNCTION    rmqC4B2Vn 
  3637.     #define BY_TWO
  3638. #endif
  3639.  
  3640. #ifdef qC4B2VnFc
  3641.     #define COLOR4
  3642.     #define BATCH
  3643.     #define VERT_NORM
  3644.     #define FACET_COLOR
  3645.     #define FUNCTION    rmqC4B2VnFc 
  3646.     #define BY_TWO
  3647. #endif
  3648.  
  3649. #ifdef qC4B2VnFcT
  3650.     #define COLOR4
  3651.     #define BATCH
  3652.     #define VERT_NORM
  3653.     #define TEXTURE
  3654.     #define FACET_COLOR
  3655.     #define FUNCTION    rmqC4B2VnFcT 
  3656.     #define BY_TWO
  3657. #endif
  3658.  
  3659. #ifdef qC4B2VnT
  3660.     #define COLOR4
  3661.     #define BATCH
  3662.     #define VERT_NORM
  3663.     #define TEXTURE
  3664.     #define FUNCTION    rmqC4B2VnT 
  3665.     #define BY_TWO
  3666. #endif
  3667.  
  3668. #ifdef qC4B2VnVc
  3669.     #define COLOR4
  3670.     #define BATCH
  3671.     #define VERT_NORM
  3672.     #define VERT_COLOR
  3673.     #define FUNCTION    rmqC4B2VnVc 
  3674.     #define BY_TWO
  3675. #endif
  3676.  
  3677. #ifdef qC4B2VnVcT
  3678.     #define COLOR4
  3679.     #define BATCH
  3680.     #define VERT_NORM
  3681.     #define VERT_COLOR
  3682.     #define TEXTURE
  3683.     #define FUNCTION    rmqC4B2VnVcT 
  3684.     #define BY_TWO
  3685. #endif
  3686.  
  3687. #ifdef tC4NB
  3688.     #define COLOR4
  3689.     #define FUNCTION    rmtC4NB 
  3690. #endif
  3691.  
  3692. #ifdef tC4NBFc
  3693.     #define COLOR4
  3694.     #define FACET_COLOR
  3695.     #define FUNCTION    rmtC4NBFc 
  3696. #endif
  3697.  
  3698. #ifdef tC4NBFcT
  3699.     #define COLOR4
  3700.     #define TEXTURE
  3701.     #define FACET_COLOR
  3702.     #define FUNCTION    rmtC4NBFcT 
  3703. #endif
  3704.  
  3705. #ifdef tC4NBFn
  3706.     #define COLOR4
  3707.     #define FACET_NORM
  3708.     #define FUNCTION    rmtC4NBFn 
  3709. #endif
  3710.  
  3711. #ifdef tC4NBFnFc
  3712.     #define COLOR4
  3713.     #define FACET_NORM
  3714.     #define FACET_COLOR
  3715.     #define FUNCTION    rmtC4NBFnFc 
  3716. #endif
  3717.  
  3718. #ifdef tC4NBFnFcT
  3719.     #define COLOR4
  3720.     #define FACET_NORM
  3721.     #define TEXTURE
  3722.     #define FACET_COLOR
  3723.     #define FUNCTION    rmtC4NBFnFcT 
  3724. #endif
  3725.  
  3726. #ifdef tC4NBFnT
  3727.     #define COLOR4
  3728.     #define FACET_NORM
  3729.     #define TEXTURE
  3730.     #define FUNCTION    rmtC4NBFnT 
  3731. #endif
  3732.  
  3733. #ifdef tC4NBFnVc
  3734.     #define COLOR4
  3735.     #define VERT_COLOR
  3736.     #define FACET_NORM
  3737.     #define FUNCTION    rmtC4NBFnVc 
  3738. #endif
  3739.  
  3740. #ifdef tC4NBFnVcT
  3741.     #define COLOR4
  3742.     #define VERT_COLOR
  3743.     #define FACET_NORM
  3744.     #define TEXTURE
  3745.     #define FUNCTION    rmtC4NBFnVcT 
  3746. #endif
  3747.  
  3748. #ifdef tC4NBT
  3749.     #define COLOR4
  3750.     #define TEXTURE
  3751.     #define FUNCTION    rmtC4NBT 
  3752. #endif
  3753.  
  3754. #ifdef tC4NBVc
  3755.     #define COLOR4
  3756.     #define VERT_COLOR
  3757.     #define FUNCTION    rmtC4NBVc 
  3758. #endif
  3759.  
  3760. #ifdef tC4NBVcT
  3761.     #define COLOR4
  3762.     #define VERT_COLOR
  3763.     #define TEXTURE
  3764.     #define FUNCTION    rmtC4NBVcT 
  3765. #endif
  3766.  
  3767. #ifdef tC4NBVn
  3768.     #define COLOR4
  3769.     #define VERT_NORM
  3770.     #define FUNCTION    rmtC4NBVn 
  3771. #endif
  3772.  
  3773. #ifdef tC4NBVnFc
  3774.     #define COLOR4
  3775.     #define VERT_NORM
  3776.     #define FACET_COLOR
  3777.     #define FUNCTION    rmtC4NBVnFc 
  3778. #endif
  3779.  
  3780. #ifdef tC4NBVnFcT
  3781.     #define COLOR4
  3782.     #define VERT_NORM
  3783.     #define TEXTURE
  3784.     #define FACET_COLOR
  3785.     #define FUNCTION    rmtC4NBVnFcT 
  3786. #endif
  3787.  
  3788. #ifdef tC4NBVnT
  3789.     #define COLOR4
  3790.     #define VERT_NORM
  3791.     #define TEXTURE
  3792.     #define FUNCTION    rmtC4NBVnT 
  3793. #endif
  3794.  
  3795. #ifdef tC4NBVnVc
  3796.     #define COLOR4
  3797.     #define VERT_NORM
  3798.     #define VERT_COLOR
  3799.     #define FUNCTION    rmtC4NBVnVc 
  3800. #endif
  3801.  
  3802. #ifdef tC4NBVnVcT
  3803.     #define COLOR4
  3804.     #define VERT_NORM
  3805.     #define VERT_COLOR
  3806.     #define TEXTURE
  3807.     #define FUNCTION    rmtC4NBVnVcT 
  3808. #endif
  3809.  
  3810. #ifdef tC4B
  3811.     #define COLOR4
  3812.     #define BATCH
  3813.     #define FUNCTION    rmtC4B 
  3814. #endif
  3815.  
  3816. #ifdef tC4BFc
  3817.     #define COLOR4
  3818.     #define BATCH
  3819.     #define FACET_COLOR
  3820.     #define FUNCTION    rmtC4BFc 
  3821. #endif
  3822.  
  3823. #ifdef tC4BFcT
  3824.     #define COLOR4
  3825.     #define BATCH
  3826.     #define TEXTURE
  3827.     #define FACET_COLOR
  3828.     #define FUNCTION    rmtC4BFcT 
  3829. #endif
  3830.  
  3831. #ifdef tC4BFn
  3832.     #define COLOR4
  3833.     #define BATCH
  3834.     #define FACET_NORM
  3835.     #define FUNCTION    rmtC4BFn 
  3836. #endif
  3837.  
  3838. #ifdef tC4BFnFc
  3839.     #define COLOR4
  3840.     #define BATCH
  3841.     #define FACET_NORM
  3842.     #define FACET_COLOR
  3843.     #define FUNCTION    rmtC4BFnFc 
  3844. #endif
  3845.  
  3846. #ifdef tC4BFnFcT
  3847.     #define COLOR4
  3848.     #define BATCH
  3849.     #define FACET_NORM
  3850.     #define TEXTURE
  3851.     #define FACET_COLOR
  3852.     #define FUNCTION    rmtC4BFnFcT 
  3853. #endif
  3854.  
  3855. #ifdef tC4BFnT
  3856.     #define COLOR4
  3857.     #define BATCH
  3858.     #define FACET_NORM
  3859.     #define TEXTURE
  3860.     #define FUNCTION    rmtC4BFnT 
  3861. #endif
  3862.  
  3863. #ifdef tC4BFnVc
  3864.     #define COLOR4
  3865.     #define BATCH
  3866.     #define VERT_COLOR
  3867.     #define FACET_NORM
  3868.     #define FUNCTION    rmtC4BFnVc 
  3869. #endif
  3870.  
  3871. #ifdef tC4BFnVcT
  3872.     #define COLOR4
  3873.     #define BATCH
  3874.     #define VERT_COLOR
  3875.     #define FACET_NORM
  3876.     #define TEXTURE
  3877.     #define FUNCTION    rmtC4BFnVcT 
  3878. #endif
  3879.  
  3880. #ifdef tC4BT
  3881.     #define COLOR4
  3882.     #define BATCH
  3883.     #define TEXTURE
  3884.     #define FUNCTION    rmtC4BT 
  3885. #endif
  3886.  
  3887. #ifdef tC4BVc
  3888.     #define COLOR4
  3889.     #define BATCH
  3890.     #define VERT_COLOR
  3891.     #define FUNCTION    rmtC4BVc 
  3892. #endif
  3893.  
  3894. #ifdef tC4BVcT
  3895.     #define COLOR4
  3896.     #define BATCH
  3897.     #define VERT_COLOR
  3898.     #define TEXTURE
  3899.     #define FUNCTION    rmtC4BVcT 
  3900. #endif
  3901.  
  3902. #ifdef tC4BVn
  3903.     #define COLOR4
  3904.     #define BATCH
  3905.     #define VERT_NORM
  3906.     #define FUNCTION    rmtC4BVn 
  3907. #endif
  3908.  
  3909. #ifdef tC4BVnFc
  3910.     #define COLOR4
  3911.     #define BATCH
  3912.     #define VERT_NORM
  3913.     #define FACET_COLOR
  3914.     #define FUNCTION    rmtC4BVnFc 
  3915. #endif
  3916.  
  3917. #ifdef tC4BVnFcT
  3918.     #define COLOR4
  3919.     #define BATCH
  3920.     #define VERT_NORM
  3921.     #define TEXTURE
  3922.     #define FACET_COLOR
  3923.     #define FUNCTION    rmtC4BVnFcT 
  3924. #endif
  3925.  
  3926. #ifdef tC4BVnT
  3927.     #define COLOR4
  3928.     #define BATCH
  3929.     #define VERT_NORM
  3930.     #define TEXTURE
  3931.     #define FUNCTION    rmtC4BVnT 
  3932. #endif
  3933.  
  3934. #ifdef tC4BVnVc
  3935.     #define COLOR4
  3936.     #define BATCH
  3937.     #define VERT_NORM
  3938.     #define VERT_COLOR
  3939.     #define FUNCTION    rmtC4BVnVc 
  3940. #endif
  3941.  
  3942. #ifdef tC4BVnVcT
  3943.     #define COLOR4
  3944.     #define BATCH
  3945.     #define VERT_NORM
  3946.     #define VERT_COLOR
  3947.     #define TEXTURE
  3948.     #define FUNCTION    rmtC4BVnVcT 
  3949. #endif
  3950.  
  3951. #ifdef tC4B2
  3952.     #define COLOR4
  3953.     #define BATCH
  3954.     #define FUNCTION    rmtC4B2 
  3955.     #define BY_TWO
  3956. #endif
  3957.  
  3958. #ifdef tC4B2Fc
  3959.     #define COLOR4
  3960.     #define BATCH
  3961.     #define FACET_COLOR
  3962.     #define FUNCTION    rmtC4B2Fc 
  3963.     #define BY_TWO
  3964. #endif
  3965.  
  3966. #ifdef tC4B2FcT
  3967.     #define COLOR4
  3968.     #define BATCH
  3969.     #define TEXTURE
  3970.     #define FACET_COLOR
  3971.     #define FUNCTION    rmtC4B2FcT 
  3972.     #define BY_TWO
  3973. #endif
  3974.  
  3975. #ifdef tC4B2Fn
  3976.     #define COLOR4
  3977.     #define BATCH
  3978.     #define FACET_NORM
  3979.     #define FUNCTION    rmtC4B2Fn 
  3980.     #define BY_TWO
  3981. #endif
  3982.  
  3983. #ifdef tC4B2FnFc
  3984.     #define COLOR4
  3985.     #define BATCH
  3986.     #define FACET_NORM
  3987.     #define FACET_COLOR
  3988.     #define FUNCTION    rmtC4B2FnFc 
  3989.     #define BY_TWO
  3990. #endif
  3991.  
  3992. #ifdef tC4B2FnFcT
  3993.     #define COLOR4
  3994.     #define BATCH
  3995.     #define FACET_NORM
  3996.     #define TEXTURE
  3997.     #define FACET_COLOR
  3998.     #define FUNCTION    rmtC4B2FnFcT 
  3999.     #define BY_TWO
  4000. #endif
  4001.  
  4002. #ifdef tC4B2FnT
  4003.     #define COLOR4
  4004.     #define BATCH
  4005.     #define FACET_NORM
  4006.     #define TEXTURE
  4007.     #define FUNCTION    rmtC4B2FnT 
  4008.     #define BY_TWO
  4009. #endif
  4010.  
  4011. #ifdef tC4B2FnVc
  4012.     #define COLOR4
  4013.     #define BATCH
  4014.     #define VERT_COLOR
  4015.     #define FACET_NORM
  4016.     #define FUNCTION    rmtC4B2FnVc 
  4017.     #define BY_TWO
  4018. #endif
  4019.  
  4020. #ifdef tC4B2FnVcT
  4021.     #define COLOR4
  4022.     #define BATCH
  4023.     #define VERT_COLOR
  4024.     #define FACET_NORM
  4025.     #define TEXTURE
  4026.     #define FUNCTION    rmtC4B2FnVcT 
  4027.     #define BY_TWO
  4028. #endif
  4029.  
  4030. #ifdef tC4B2T
  4031.     #define COLOR4
  4032.     #define BATCH
  4033.     #define TEXTURE
  4034.     #define FUNCTION    rmtC4B2T 
  4035.     #define BY_TWO
  4036. #endif
  4037.  
  4038. #ifdef tC4B2Vc
  4039.     #define COLOR4
  4040.     #define BATCH
  4041.     #define VERT_COLOR
  4042.     #define FUNCTION    rmtC4B2Vc 
  4043.     #define BY_TWO
  4044. #endif
  4045.  
  4046. #ifdef tC4B2VcT
  4047.     #define COLOR4
  4048.     #define BATCH
  4049.     #define VERT_COLOR
  4050.     #define TEXTURE
  4051.     #define FUNCTION    rmtC4B2VcT 
  4052.     #define BY_TWO
  4053. #endif
  4054.  
  4055. #ifdef tC4B2Vn
  4056.     #define COLOR4
  4057.     #define BATCH
  4058.     #define VERT_NORM
  4059.     #define FUNCTION    rmtC4B2Vn 
  4060.     #define BY_TWO
  4061. #endif
  4062.  
  4063. #ifdef tC4B2VnFc
  4064.     #define COLOR4
  4065.     #define BATCH
  4066.     #define VERT_NORM
  4067.     #define FACET_COLOR
  4068.     #define FUNCTION    rmtC4B2VnFc 
  4069.     #define BY_TWO
  4070. #endif
  4071.  
  4072. #ifdef tC4B2VnFcT
  4073.     #define COLOR4
  4074.     #define BATCH
  4075.     #define VERT_NORM
  4076.     #define TEXTURE
  4077.     #define FACET_COLOR
  4078.     #define FUNCTION    rmtC4B2VnFcT 
  4079.     #define BY_TWO
  4080. #endif
  4081.  
  4082. #ifdef tC4B2VnT
  4083.     #define COLOR4
  4084.     #define BATCH
  4085.     #define VERT_NORM
  4086.     #define TEXTURE
  4087.     #define FUNCTION    rmtC4B2VnT 
  4088.     #define BY_TWO
  4089. #endif
  4090.  
  4091. #ifdef tC4B2VnVc
  4092.     #define COLOR4
  4093.     #define BATCH
  4094.     #define VERT_NORM
  4095.     #define VERT_COLOR
  4096.     #define FUNCTION    rmtC4B2VnVc 
  4097.     #define BY_TWO
  4098. #endif
  4099.  
  4100. #ifdef tC4B2VnVcT
  4101.     #define COLOR4
  4102.     #define BATCH
  4103.     #define VERT_NORM
  4104.     #define VERT_COLOR
  4105.     #define TEXTURE
  4106.     #define FUNCTION    rmtC4B2VnVcT 
  4107.     #define BY_TWO
  4108. #endif
  4109.  
  4110. #ifdef mC4E
  4111.     #define COLOR4
  4112.     #define EXTERNAL
  4113.     #define FUNCTION    rmmC4E 
  4114. #endif
  4115.  
  4116. #ifdef mC4EFc
  4117.     #define COLOR4
  4118.     #define EXTERNAL
  4119.     #define FACET_COLOR
  4120.     #define FUNCTION    rmmC4EFc 
  4121. #endif
  4122.  
  4123. #ifdef mC4EFcT
  4124.     #define COLOR4
  4125.     #define EXTERNAL
  4126.     #define TEXTURE
  4127.     #define FACET_COLOR
  4128.     #define FUNCTION    rmmC4EFcT 
  4129. #endif
  4130.  
  4131. #ifdef mC4EFn
  4132.     #define COLOR4
  4133.     #define EXTERNAL
  4134.     #define FACET_NORM
  4135.     #define FUNCTION    rmmC4EFn 
  4136. #endif
  4137.  
  4138. #ifdef mC4EFnFc
  4139.     #define COLOR4
  4140.     #define EXTERNAL
  4141.     #define FACET_NORM
  4142.     #define FACET_COLOR
  4143.     #define FUNCTION    rmmC4EFnFc 
  4144. #endif
  4145.  
  4146. #ifdef mC4EFnFcT
  4147.     #define COLOR4
  4148.     #define EXTERNAL
  4149.     #define FACET_NORM
  4150.     #define TEXTURE
  4151.     #define FACET_COLOR
  4152.     #define FUNCTION    rmmC4EFnFcT 
  4153. #endif
  4154.  
  4155. #ifdef mC4EFnT
  4156.     #define COLOR4
  4157.     #define EXTERNAL
  4158.     #define FACET_NORM
  4159.     #define TEXTURE
  4160.     #define FUNCTION    rmmC4EFnT 
  4161. #endif
  4162.  
  4163. #ifdef mC4EFnVc
  4164.     #define COLOR4
  4165.     #define EXTERNAL
  4166.     #define VERT_COLOR
  4167.     #define FACET_NORM
  4168.     #define FUNCTION    rmmC4EFnVc 
  4169. #endif
  4170.  
  4171. #ifdef mC4EFnVcT
  4172.     #define COLOR4
  4173.     #define EXTERNAL
  4174.     #define VERT_COLOR
  4175.     #define FACET_NORM
  4176.     #define TEXTURE
  4177.     #define FUNCTION    rmmC4EFnVcT 
  4178. #endif
  4179.  
  4180. #ifdef mC4ET
  4181.     #define COLOR4
  4182.     #define EXTERNAL
  4183.     #define TEXTURE
  4184.     #define FUNCTION    rmmC4ET 
  4185. #endif
  4186.  
  4187. #ifdef mC4EVc
  4188.     #define COLOR4
  4189.     #define EXTERNAL
  4190.     #define VERT_COLOR
  4191.     #define FUNCTION    rmmC4EVc 
  4192. #endif
  4193.  
  4194. #ifdef mC4EVcT
  4195.     #define COLOR4
  4196.     #define EXTERNAL
  4197.     #define VERT_COLOR
  4198.     #define TEXTURE
  4199.     #define FUNCTION    rmmC4EVcT 
  4200. #endif
  4201.  
  4202. #ifdef mC4EVn
  4203.     #define COLOR4
  4204.     #define EXTERNAL
  4205.     #define VERT_NORM
  4206.     #define FUNCTION    rmmC4EVn 
  4207. #endif
  4208.  
  4209. #ifdef mC4EVnFc
  4210.     #define COLOR4
  4211.     #define EXTERNAL
  4212.     #define VERT_NORM
  4213.     #define FACET_COLOR
  4214.     #define FUNCTION    rmmC4EVnFc 
  4215. #endif
  4216.  
  4217. #ifdef mC4EVnFcT
  4218.     #define COLOR4
  4219.     #define EXTERNAL
  4220.     #define VERT_NORM
  4221.     #define TEXTURE
  4222.     #define FACET_COLOR
  4223.     #define FUNCTION    rmmC4EVnFcT 
  4224. #endif
  4225.  
  4226. #ifdef mC4EVnT
  4227.     #define COLOR4
  4228.     #define EXTERNAL
  4229.     #define VERT_NORM
  4230.     #define TEXTURE
  4231.     #define FUNCTION    rmmC4EVnT 
  4232. #endif
  4233.  
  4234. #ifdef mC4EVnVc
  4235.     #define COLOR4
  4236.     #define EXTERNAL
  4237.     #define VERT_NORM
  4238.     #define VERT_COLOR
  4239.     #define FUNCTION    rmmC4EVnVc 
  4240. #endif
  4241.  
  4242. #ifdef mC4EVnVcT
  4243.     #define COLOR4
  4244.     #define EXTERNAL
  4245.     #define VERT_NORM
  4246.     #define VERT_COLOR
  4247.     #define TEXTURE
  4248.     #define FUNCTION    rmmC4EVnVcT 
  4249. #endif
  4250.  
  4251. #ifdef pC4E
  4252.     #define COLOR4
  4253.     #define EXTERNAL
  4254.     #define FUNCTION    rmpC4E 
  4255. #endif
  4256.  
  4257. #ifdef pC4EFc
  4258.     #define COLOR4
  4259.     #define EXTERNAL
  4260.     #define FACET_COLOR
  4261.     #define FUNCTION    rmpC4EFc 
  4262. #endif
  4263.  
  4264. #ifdef pC4EFcT
  4265.     #define COLOR4
  4266.     #define EXTERNAL
  4267.     #define TEXTURE
  4268.     #define FACET_COLOR
  4269.     #define FUNCTION    rmpC4EFcT 
  4270. #endif
  4271.  
  4272. #ifdef pC4EFn
  4273.     #define COLOR4
  4274.     #define EXTERNAL
  4275.     #define FACET_NORM
  4276.     #define FUNCTION    rmpC4EFn 
  4277. #endif
  4278.  
  4279. #ifdef pC4EFnFc
  4280.     #define COLOR4
  4281.     #define EXTERNAL
  4282.     #define FACET_NORM
  4283.     #define FACET_COLOR
  4284.     #define FUNCTION    rmpC4EFnFc 
  4285. #endif
  4286.  
  4287. #ifdef pC4EFnFcT
  4288.     #define COLOR4
  4289.     #define EXTERNAL
  4290.     #define FACET_NORM
  4291.     #define TEXTURE
  4292.     #define FACET_COLOR
  4293.     #define FUNCTION    rmpC4EFnFcT 
  4294. #endif
  4295.  
  4296. #ifdef pC4EFnT
  4297.     #define COLOR4
  4298.     #define EXTERNAL
  4299.     #define FACET_NORM
  4300.     #define TEXTURE
  4301.     #define FUNCTION    rmpC4EFnT 
  4302. #endif
  4303.  
  4304. #ifdef pC4EFnVc
  4305.     #define COLOR4
  4306.     #define EXTERNAL
  4307.     #define VERT_COLOR
  4308.     #define FACET_NORM
  4309.     #define FUNCTION    rmpC4EFnVc 
  4310. #endif
  4311.  
  4312. #ifdef pC4EFnVcT
  4313.     #define COLOR4
  4314.     #define EXTERNAL
  4315.     #define VERT_COLOR
  4316.     #define FACET_NORM
  4317.     #define TEXTURE
  4318.     #define FUNCTION    rmpC4EFnVcT 
  4319. #endif
  4320.  
  4321. #ifdef pC4ET
  4322.     #define COLOR4
  4323.     #define EXTERNAL
  4324.     #define TEXTURE
  4325.     #define FUNCTION    rmpC4ET 
  4326. #endif
  4327.  
  4328. #ifdef pC4EVc
  4329.     #define COLOR4
  4330.     #define EXTERNAL
  4331.     #define VERT_COLOR
  4332.     #define FUNCTION    rmpC4EVc 
  4333. #endif
  4334.  
  4335. #ifdef pC4EVcT
  4336.     #define COLOR4
  4337.     #define EXTERNAL
  4338.     #define VERT_COLOR
  4339.     #define TEXTURE
  4340.     #define FUNCTION    rmpC4EVcT 
  4341. #endif
  4342.  
  4343. #ifdef pC4EVn
  4344.     #define COLOR4
  4345.     #define EXTERNAL
  4346.     #define VERT_NORM
  4347.     #define FUNCTION    rmpC4EVn 
  4348. #endif
  4349.  
  4350. #ifdef pC4EVnFc
  4351.     #define COLOR4
  4352.     #define EXTERNAL
  4353.     #define VERT_NORM
  4354.     #define FACET_COLOR
  4355.     #define FUNCTION    rmpC4EVnFc 
  4356. #endif
  4357.  
  4358. #ifdef pC4EVnFcT
  4359.     #define COLOR4
  4360.     #define EXTERNAL
  4361.     #define VERT_NORM
  4362.     #define TEXTURE
  4363.     #define FACET_COLOR
  4364.     #define FUNCTION    rmpC4EVnFcT 
  4365. #endif
  4366.  
  4367. #ifdef pC4EVnT
  4368.     #define COLOR4
  4369.     #define EXTERNAL
  4370.     #define VERT_NORM
  4371.     #define TEXTURE
  4372.     #define FUNCTION    rmpC4EVnT 
  4373. #endif
  4374.  
  4375. #ifdef pC4EVnVc
  4376.     #define COLOR4
  4377.     #define EXTERNAL
  4378.     #define VERT_NORM
  4379.     #define VERT_COLOR
  4380.     #define FUNCTION    rmpC4EVnVc 
  4381. #endif
  4382.  
  4383. #ifdef pC4EVnVcT
  4384.     #define COLOR4
  4385.     #define EXTERNAL
  4386.     #define VERT_NORM
  4387.     #define VERT_COLOR
  4388.     #define TEXTURE
  4389.     #define FUNCTION    rmpC4EVnVcT 
  4390. #endif
  4391.  
  4392. #ifdef qC4E
  4393.     #define COLOR4
  4394.     #define EXTERNAL
  4395.     #define FUNCTION    rmqC4E 
  4396. #endif
  4397.  
  4398. #ifdef qC4EFc
  4399.     #define COLOR4
  4400.     #define EXTERNAL
  4401.     #define FACET_COLOR
  4402.     #define FUNCTION    rmqC4EFc 
  4403. #endif
  4404.  
  4405. #ifdef qC4EFcT
  4406.     #define COLOR4
  4407.     #define EXTERNAL
  4408.     #define TEXTURE
  4409.     #define FACET_COLOR
  4410.     #define FUNCTION    rmqC4EFcT 
  4411. #endif
  4412.  
  4413. #ifdef qC4EFn
  4414.     #define COLOR4
  4415.     #define EXTERNAL
  4416.     #define FACET_NORM
  4417.     #define FUNCTION    rmqC4EFn 
  4418. #endif
  4419.  
  4420. #ifdef qC4EFnFc
  4421.     #define COLOR4
  4422.     #define EXTERNAL
  4423.     #define FACET_NORM
  4424.     #define FACET_COLOR
  4425.     #define FUNCTION    rmqC4EFnFc 
  4426. #endif
  4427.  
  4428. #ifdef qC4EFnFcT
  4429.     #define COLOR4
  4430.     #define EXTERNAL
  4431.     #define FACET_NORM
  4432.     #define TEXTURE
  4433.     #define FACET_COLOR
  4434.     #define FUNCTION    rmqC4EFnFcT 
  4435. #endif
  4436.  
  4437. #ifdef qC4EFnT
  4438.     #define COLOR4
  4439.     #define EXTERNAL
  4440.     #define FACET_NORM
  4441.     #define TEXTURE
  4442.     #define FUNCTION    rmqC4EFnT 
  4443. #endif
  4444.  
  4445. #ifdef qC4EFnVc
  4446.     #define COLOR4
  4447.     #define EXTERNAL
  4448.     #define VERT_COLOR
  4449.     #define FACET_NORM
  4450.     #define FUNCTION    rmqC4EFnVc 
  4451. #endif
  4452.  
  4453. #ifdef qC4EFnVcT
  4454.     #define COLOR4
  4455.     #define EXTERNAL
  4456.     #define VERT_COLOR
  4457.     #define FACET_NORM
  4458.     #define TEXTURE
  4459.     #define FUNCTION    rmqC4EFnVcT 
  4460. #endif
  4461.  
  4462. #ifdef qC4ET
  4463.     #define COLOR4
  4464.     #define EXTERNAL
  4465.     #define TEXTURE
  4466.     #define FUNCTION    rmqC4ET 
  4467. #endif
  4468.  
  4469. #ifdef qC4EVc
  4470.     #define COLOR4
  4471.     #define EXTERNAL
  4472.     #define VERT_COLOR
  4473.     #define FUNCTION    rmqC4EVc 
  4474. #endif
  4475.  
  4476. #ifdef qC4EVcT
  4477.     #define COLOR4
  4478.     #define EXTERNAL
  4479.     #define VERT_COLOR
  4480.     #define TEXTURE
  4481.     #define FUNCTION    rmqC4EVcT 
  4482. #endif
  4483.  
  4484. #ifdef qC4EVn
  4485.     #define COLOR4
  4486.     #define EXTERNAL
  4487.     #define VERT_NORM
  4488.     #define FUNCTION    rmqC4EVn 
  4489. #endif
  4490.  
  4491. #ifdef qC4EVnFc
  4492.     #define COLOR4
  4493.     #define EXTERNAL
  4494.     #define VERT_NORM
  4495.     #define FACET_COLOR
  4496.     #define FUNCTION    rmqC4EVnFc 
  4497. #endif
  4498.  
  4499. #ifdef qC4EVnFcT
  4500.     #define COLOR4
  4501.     #define EXTERNAL
  4502.     #define VERT_NORM
  4503.     #define TEXTURE
  4504.     #define FACET_COLOR
  4505.     #define FUNCTION    rmqC4EVnFcT 
  4506. #endif
  4507.  
  4508. #ifdef qC4EVnT
  4509.     #define COLOR4
  4510.     #define EXTERNAL
  4511.     #define VERT_NORM
  4512.     #define TEXTURE
  4513.     #define FUNCTION    rmqC4EVnT 
  4514. #endif
  4515.  
  4516. #ifdef qC4EVnVc
  4517.     #define COLOR4
  4518.     #define EXTERNAL
  4519.     #define VERT_NORM
  4520.     #define VERT_COLOR
  4521.     #define FUNCTION    rmqC4EVnVc 
  4522. #endif
  4523.  
  4524. #ifdef qC4EVnVcT
  4525.     #define COLOR4
  4526.     #define EXTERNAL
  4527.     #define VERT_NORM
  4528.     #define VERT_COLOR
  4529.     #define TEXTURE
  4530.     #define FUNCTION    rmqC4EVnVcT 
  4531. #endif
  4532.  
  4533. #ifdef tC4E
  4534.     #define COLOR4
  4535.     #define EXTERNAL
  4536.     #define FUNCTION    rmtC4E 
  4537. #endif
  4538.  
  4539. #ifdef tC4EFc
  4540.     #define COLOR4
  4541.     #define EXTERNAL
  4542.     #define FACET_COLOR
  4543.     #define FUNCTION    rmtC4EFc 
  4544. #endif
  4545.  
  4546. #ifdef tC4EFcT
  4547.     #define COLOR4
  4548.     #define EXTERNAL
  4549.     #define TEXTURE
  4550.     #define FACET_COLOR
  4551.     #define FUNCTION    rmtC4EFcT 
  4552. #endif
  4553.  
  4554. #ifdef tC4EFn
  4555.     #define COLOR4
  4556.     #define EXTERNAL
  4557.     #define FACET_NORM
  4558.     #define FUNCTION    rmtC4EFn 
  4559. #endif
  4560.  
  4561. #ifdef tC4EFnFc
  4562.     #define COLOR4
  4563.     #define EXTERNAL
  4564.     #define FACET_NORM
  4565.     #define FACET_COLOR
  4566.     #define FUNCTION    rmtC4EFnFc 
  4567. #endif
  4568.  
  4569. #ifdef tC4EFnFcT
  4570.     #define COLOR4
  4571.     #define EXTERNAL
  4572.     #define FACET_NORM
  4573.     #define TEXTURE
  4574.     #define FACET_COLOR
  4575.     #define FUNCTION    rmtC4EFnFcT 
  4576. #endif
  4577.  
  4578. #ifdef tC4EFnT
  4579.     #define COLOR4
  4580.     #define EXTERNAL
  4581.     #define FACET_NORM
  4582.     #define TEXTURE
  4583.     #define FUNCTION    rmtC4EFnT 
  4584. #endif
  4585.  
  4586. #ifdef tC4EFnVc
  4587.     #define COLOR4
  4588.     #define EXTERNAL
  4589.     #define VERT_COLOR
  4590.     #define FACET_NORM
  4591.     #define FUNCTION    rmtC4EFnVc 
  4592. #endif
  4593.  
  4594. #ifdef tC4EFnVcT
  4595.     #define COLOR4
  4596.     #define EXTERNAL
  4597.     #define VERT_COLOR
  4598.     #define FACET_NORM
  4599.     #define TEXTURE
  4600.     #define FUNCTION    rmtC4EFnVcT 
  4601. #endif
  4602.  
  4603. #ifdef tC4ET
  4604.     #define COLOR4
  4605.     #define EXTERNAL
  4606.     #define TEXTURE
  4607.     #define FUNCTION    rmtC4ET 
  4608. #endif
  4609.  
  4610. #ifdef tC4EVc
  4611.     #define COLOR4
  4612.     #define EXTERNAL
  4613.     #define VERT_COLOR
  4614.     #define FUNCTION    rmtC4EVc 
  4615. #endif
  4616.  
  4617. #ifdef tC4EVcT
  4618.     #define COLOR4
  4619.     #define EXTERNAL
  4620.     #define VERT_COLOR
  4621.     #define TEXTURE
  4622.     #define FUNCTION    rmtC4EVcT 
  4623. #endif
  4624.  
  4625. #ifdef tC4EVn
  4626.     #define COLOR4
  4627.     #define EXTERNAL
  4628.     #define VERT_NORM
  4629.     #define FUNCTION    rmtC4EVn 
  4630. #endif
  4631.  
  4632. #ifdef tC4EVnFc
  4633.     #define COLOR4
  4634.     #define EXTERNAL
  4635.     #define VERT_NORM
  4636.     #define FACET_COLOR
  4637.     #define FUNCTION    rmtC4EVnFc 
  4638. #endif
  4639.  
  4640. #ifdef tC4EVnFcT
  4641.     #define COLOR4
  4642.     #define EXTERNAL
  4643.     #define VERT_NORM
  4644.     #define TEXTURE
  4645.     #define FACET_COLOR
  4646.     #define FUNCTION    rmtC4EVnFcT 
  4647. #endif
  4648.  
  4649. #ifdef tC4EVnT
  4650.     #define COLOR4
  4651.     #define EXTERNAL
  4652.     #define VERT_NORM
  4653.     #define TEXTURE
  4654.     #define FUNCTION    rmtC4EVnT 
  4655. #endif
  4656.  
  4657. #ifdef tC4EVnVc
  4658.     #define COLOR4
  4659.     #define EXTERNAL
  4660.     #define VERT_NORM
  4661.     #define VERT_COLOR
  4662.     #define FUNCTION    rmtC4EVnVc 
  4663. #endif
  4664.  
  4665. #ifdef tC4EVnVcT
  4666.     #define COLOR4
  4667.     #define EXTERNAL
  4668.     #define VERT_NORM
  4669.     #define VERT_COLOR
  4670.     #define TEXTURE
  4671.     #define FUNCTION    rmtC4EVnVcT 
  4672. #endif
  4673.  
  4674. #ifdef mC4E2
  4675.     #define COLOR4
  4676.     #define BY_TWO
  4677.     #define EXTERNAL
  4678.     #define FUNCTION    rmmC4E2 
  4679. #endif
  4680.  
  4681. #ifdef mC4E2Fc
  4682.     #define COLOR4
  4683.     #define BY_TWO
  4684.     #define EXTERNAL
  4685.     #define FACET_COLOR
  4686.     #define FUNCTION    rmmC4E2Fc 
  4687. #endif
  4688.  
  4689. #ifdef mC4E2FcT
  4690.     #define COLOR4
  4691.     #define BY_TWO
  4692.     #define EXTERNAL
  4693.     #define TEXTURE
  4694.     #define FACET_COLOR
  4695.     #define FUNCTION    rmmC4E2FcT 
  4696. #endif
  4697.  
  4698. #ifdef mC4E2Fn
  4699.     #define COLOR4
  4700.     #define BY_TWO
  4701.     #define EXTERNAL
  4702.     #define FACET_NORM
  4703.     #define FUNCTION    rmmC4E2Fn 
  4704. #endif
  4705.  
  4706. #ifdef mC4E2FnFc
  4707.     #define COLOR4
  4708.     #define BY_TWO
  4709.     #define EXTERNAL
  4710.     #define FACET_NORM
  4711.     #define FACET_COLOR
  4712.     #define FUNCTION    rmmC4E2FnFc 
  4713. #endif
  4714.  
  4715. #ifdef mC4E2FnFcT
  4716.     #define COLOR4
  4717.     #define BY_TWO
  4718.     #define EXTERNAL
  4719.     #define FACET_NORM
  4720.     #define TEXTURE
  4721.     #define FACET_COLOR
  4722.     #define FUNCTION    rmmC4E2FnFcT 
  4723. #endif
  4724.  
  4725. #ifdef mC4E2FnT
  4726.     #define COLOR4
  4727.     #define BY_TWO
  4728.     #define EXTERNAL
  4729.     #define FACET_NORM
  4730.     #define TEXTURE
  4731.     #define FUNCTION    rmmC4E2FnT 
  4732. #endif
  4733.  
  4734. #ifdef mC4E2FnVc
  4735.     #define COLOR4
  4736.     #define BY_TWO
  4737.     #define EXTERNAL
  4738.     #define VERT_COLOR
  4739.     #define FACET_NORM
  4740.     #define FUNCTION    rmmC4E2FnVc 
  4741. #endif
  4742.  
  4743. #ifdef mC4E2FnVcT
  4744.     #define COLOR4
  4745.     #define BY_TWO
  4746.     #define EXTERNAL
  4747.     #define VERT_COLOR
  4748.     #define FACET_NORM
  4749.     #define TEXTURE
  4750.     #define FUNCTION    rmmC4E2FnVcT 
  4751. #endif
  4752.  
  4753. #ifdef mC4E2T
  4754.     #define COLOR4
  4755.     #define BY_TWO
  4756.     #define EXTERNAL
  4757.     #define TEXTURE
  4758.     #define FUNCTION    rmmC4E2T 
  4759. #endif
  4760.  
  4761. #ifdef mC4E2Vc
  4762.     #define COLOR4
  4763.     #define BY_TWO
  4764.     #define EXTERNAL
  4765.     #define VERT_COLOR
  4766.     #define FUNCTION    rmmC4E2Vc 
  4767. #endif
  4768.  
  4769. #ifdef mC4E2VcT
  4770.     #define COLOR4
  4771.     #define BY_TWO
  4772.     #define EXTERNAL
  4773.     #define VERT_COLOR
  4774.     #define TEXTURE
  4775.     #define FUNCTION    rmmC4E2VcT 
  4776. #endif
  4777.  
  4778. #ifdef mC4E2Vn
  4779.     #define COLOR4
  4780.     #define BY_TWO
  4781.     #define EXTERNAL
  4782.     #define VERT_NORM
  4783.     #define FUNCTION    rmmC4E2Vn 
  4784. #endif
  4785.  
  4786. #ifdef mC4E2VnFc
  4787.     #define COLOR4
  4788.     #define BY_TWO
  4789.     #define EXTERNAL
  4790.     #define VERT_NORM
  4791.     #define FACET_COLOR
  4792.     #define FUNCTION    rmmC4E2VnFc 
  4793. #endif
  4794.  
  4795. #ifdef mC4E2VnFcT
  4796.     #define COLOR4
  4797.     #define BY_TWO
  4798.     #define EXTERNAL
  4799.     #define VERT_NORM
  4800.     #define TEXTURE
  4801.     #define FACET_COLOR
  4802.     #define FUNCTION    rmmC4E2VnFcT 
  4803. #endif
  4804.  
  4805. #ifdef mC4E2VnT
  4806.     #define COLOR4
  4807.     #define BY_TWO
  4808.     #define EXTERNAL
  4809.     #define VERT_NORM
  4810.     #define TEXTURE
  4811.     #define FUNCTION    rmmC4E2VnT 
  4812. #endif
  4813.  
  4814. #ifdef mC4E2VnVc
  4815.     #define COLOR4
  4816.     #define BY_TWO
  4817.     #define EXTERNAL
  4818.     #define VERT_NORM
  4819.     #define VERT_COLOR
  4820.     #define FUNCTION    rmmC4E2VnVc 
  4821. #endif
  4822.  
  4823. #ifdef mC4E2VnVcT
  4824.     #define COLOR4
  4825.     #define BY_TWO
  4826.     #define EXTERNAL
  4827.     #define VERT_NORM
  4828.     #define VERT_COLOR
  4829.     #define TEXTURE
  4830.     #define FUNCTION    rmmC4E2VnVcT 
  4831. #endif
  4832.  
  4833. #ifdef pC4E2
  4834.     #define COLOR4
  4835.     #define BY_TWO
  4836.     #define EXTERNAL
  4837.     #define FUNCTION    rmpC4E2 
  4838. #endif
  4839.  
  4840. #ifdef pC4E2Fc
  4841.     #define COLOR4
  4842.     #define BY_TWO
  4843.     #define EXTERNAL
  4844.     #define FACET_COLOR
  4845.     #define FUNCTION    rmpC4E2Fc 
  4846. #endif
  4847.  
  4848. #ifdef pC4E2FcT
  4849.     #define COLOR4
  4850.     #define BY_TWO
  4851.     #define EXTERNAL
  4852.     #define TEXTURE
  4853.     #define FACET_COLOR
  4854.     #define FUNCTION    rmpC4E2FcT 
  4855. #endif
  4856.  
  4857. #ifdef pC4E2Fn
  4858.     #define COLOR4
  4859.     #define BY_TWO
  4860.     #define EXTERNAL
  4861.     #define FACET_NORM
  4862.     #define FUNCTION    rmpC4E2Fn 
  4863. #endif
  4864.  
  4865. #ifdef pC4E2FnFc
  4866.     #define COLOR4
  4867.     #define BY_TWO
  4868.     #define EXTERNAL
  4869.     #define FACET_NORM
  4870.     #define FACET_COLOR
  4871.     #define FUNCTION    rmpC4E2FnFc 
  4872. #endif
  4873.  
  4874. #ifdef pC4E2FnFcT
  4875.     #define COLOR4
  4876.     #define BY_TWO
  4877.     #define EXTERNAL
  4878.     #define FACET_NORM
  4879.     #define TEXTURE
  4880.     #define FACET_COLOR
  4881.     #define FUNCTION    rmpC4E2FnFcT 
  4882. #endif
  4883.  
  4884. #ifdef pC4E2FnT
  4885.     #define COLOR4
  4886.     #define BY_TWO
  4887.     #define EXTERNAL
  4888.     #define FACET_NORM
  4889.     #define TEXTURE
  4890.     #define FUNCTION    rmpC4E2FnT 
  4891. #endif
  4892.  
  4893. #ifdef pC4E2FnVc
  4894.     #define COLOR4
  4895.     #define BY_TWO
  4896.     #define EXTERNAL
  4897.     #define VERT_COLOR
  4898.     #define FACET_NORM
  4899.     #define FUNCTION    rmpC4E2FnVc 
  4900. #endif
  4901.  
  4902. #ifdef pC4E2FnVcT
  4903.     #define COLOR4
  4904.     #define BY_TWO
  4905.     #define EXTERNAL
  4906.     #define VERT_COLOR
  4907.     #define FACET_NORM
  4908.     #define TEXTURE
  4909.     #define FUNCTION    rmpC4E2FnVcT 
  4910. #endif
  4911.  
  4912. #ifdef pC4E2T
  4913.     #define COLOR4
  4914.     #define BY_TWO
  4915.     #define EXTERNAL
  4916.     #define TEXTURE
  4917.     #define FUNCTION    rmpC4E2T 
  4918. #endif
  4919.  
  4920. #ifdef pC4E2Vc
  4921.     #define COLOR4
  4922.     #define BY_TWO
  4923.     #define EXTERNAL
  4924.     #define VERT_COLOR
  4925.     #define FUNCTION    rmpC4E2Vc 
  4926. #endif
  4927.  
  4928. #ifdef pC4E2VcT
  4929.     #define COLOR4
  4930.     #define BY_TWO
  4931.     #define EXTERNAL
  4932.     #define VERT_COLOR
  4933.     #define TEXTURE
  4934.     #define FUNCTION    rmpC4E2VcT 
  4935. #endif
  4936.  
  4937. #ifdef pC4E2Vn
  4938.     #define COLOR4
  4939.     #define BY_TWO
  4940.     #define EXTERNAL
  4941.     #define VERT_NORM
  4942.     #define FUNCTION    rmpC4E2Vn 
  4943. #endif
  4944.  
  4945. #ifdef pC4E2VnFc
  4946.     #define COLOR4
  4947.     #define BY_TWO
  4948.     #define EXTERNAL
  4949.     #define VERT_NORM
  4950.     #define FACET_COLOR
  4951.     #define FUNCTION    rmpC4E2VnFc 
  4952. #endif
  4953.  
  4954. #ifdef pC4E2VnFcT
  4955.     #define COLOR4
  4956.     #define BY_TWO
  4957.     #define EXTERNAL
  4958.     #define VERT_NORM
  4959.     #define TEXTURE
  4960.     #define FACET_COLOR
  4961.     #define FUNCTION    rmpC4E2VnFcT 
  4962. #endif
  4963.  
  4964. #ifdef pC4E2VnT
  4965.     #define COLOR4
  4966.     #define BY_TWO
  4967.     #define EXTERNAL
  4968.     #define VERT_NORM
  4969.     #define TEXTURE
  4970.     #define FUNCTION    rmpC4E2VnT 
  4971. #endif
  4972.  
  4973. #ifdef pC4E2VnVc
  4974.     #define COLOR4
  4975.     #define BY_TWO
  4976.     #define EXTERNAL
  4977.     #define VERT_NORM
  4978.     #define VERT_COLOR
  4979.     #define FUNCTION    rmpC4E2VnVc 
  4980. #endif
  4981.  
  4982. #ifdef pC4E2VnVcT
  4983.     #define COLOR4
  4984.     #define BY_TWO
  4985.     #define EXTERNAL
  4986.     #define VERT_NORM
  4987.     #define VERT_COLOR
  4988.     #define TEXTURE
  4989.     #define FUNCTION    rmpC4E2VnVcT 
  4990. #endif
  4991.  
  4992. #ifdef qC4E2
  4993.     #define COLOR4
  4994.     #define BY_TWO
  4995.     #define EXTERNAL
  4996.     #define FUNCTION    rmqC4E2 
  4997. #endif
  4998.  
  4999. #ifdef qC4E2Fc
  5000.     #define COLOR4
  5001.     #define BY_TWO
  5002.     #define EXTERNAL
  5003.     #define FACET_COLOR
  5004.     #define FUNCTION    rmqC4E2Fc 
  5005. #endif
  5006.  
  5007. #ifdef qC4E2FcT
  5008.     #define COLOR4
  5009.     #define BY_TWO
  5010.     #define EXTERNAL
  5011.     #define TEXTURE
  5012.     #define FACET_COLOR
  5013.     #define FUNCTION    rmqC4E2FcT 
  5014. #endif
  5015.  
  5016. #ifdef qC4E2Fn
  5017.     #define COLOR4
  5018.     #define BY_TWO
  5019.     #define EXTERNAL
  5020.     #define FACET_NORM
  5021.     #define FUNCTION    rmqC4E2Fn 
  5022. #endif
  5023.  
  5024. #ifdef qC4E2FnFc
  5025.     #define COLOR4
  5026.     #define BY_TWO
  5027.     #define EXTERNAL
  5028.     #define FACET_NORM
  5029.     #define FACET_COLOR
  5030.     #define FUNCTION    rmqC4E2FnFc 
  5031. #endif
  5032.  
  5033. #ifdef qC4E2FnFcT
  5034.     #define COLOR4
  5035.     #define BY_TWO
  5036.     #define EXTERNAL
  5037.     #define FACET_NORM
  5038.     #define TEXTURE
  5039.     #define FACET_COLOR
  5040.     #define FUNCTION    rmqC4E2FnFcT 
  5041. #endif
  5042.  
  5043. #ifdef qC4E2FnT
  5044.     #define COLOR4
  5045.     #define BY_TWO
  5046.     #define EXTERNAL
  5047.     #define FACET_NORM
  5048.     #define TEXTURE
  5049.     #define FUNCTION    rmqC4E2FnT 
  5050. #endif
  5051.  
  5052. #ifdef qC4E2FnVc
  5053.     #define COLOR4
  5054.     #define BY_TWO
  5055.     #define EXTERNAL
  5056.     #define VERT_COLOR
  5057.     #define FACET_NORM
  5058.     #define FUNCTION    rmqC4E2FnVc 
  5059. #endif
  5060.  
  5061. #ifdef qC4E2FnVcT
  5062.     #define COLOR4
  5063.     #define BY_TWO
  5064.     #define EXTERNAL
  5065.     #define VERT_COLOR
  5066.     #define FACET_NORM
  5067.     #define TEXTURE
  5068.     #define FUNCTION    rmqC4E2FnVcT 
  5069. #endif
  5070.  
  5071. #ifdef qC4E2T
  5072.     #define COLOR4
  5073.     #define BY_TWO
  5074.     #define EXTERNAL
  5075.     #define TEXTURE
  5076.     #define FUNCTION    rmqC4E2T 
  5077. #endif
  5078.  
  5079. #ifdef qC4E2Vc
  5080.     #define COLOR4
  5081.     #define BY_TWO
  5082.     #define EXTERNAL
  5083.     #define VERT_COLOR
  5084.     #define FUNCTION    rmqC4E2Vc 
  5085. #endif
  5086.  
  5087. #ifdef qC4E2VcT
  5088.     #define COLOR4
  5089.     #define BY_TWO
  5090.     #define EXTERNAL
  5091.     #define VERT_COLOR
  5092.     #define TEXTURE
  5093.     #define FUNCTION    rmqC4E2VcT 
  5094. #endif
  5095.  
  5096. #ifdef qC4E2Vn
  5097.     #define COLOR4
  5098.     #define BY_TWO
  5099.     #define EXTERNAL
  5100.     #define VERT_NORM
  5101.     #define FUNCTION    rmqC4E2Vn 
  5102. #endif
  5103.  
  5104. #ifdef qC4E2VnFc
  5105.     #define COLOR4
  5106.     #define BY_TWO
  5107.     #define EXTERNAL
  5108.     #define VERT_NORM
  5109.     #define FACET_COLOR
  5110.     #define FUNCTION    rmqC4E2VnFc 
  5111. #endif
  5112.  
  5113. #ifdef qC4E2VnFcT
  5114.     #define COLOR4
  5115.     #define BY_TWO
  5116.     #define EXTERNAL
  5117.     #define VERT_NORM
  5118.     #define TEXTURE
  5119.     #define FACET_COLOR
  5120.     #define FUNCTION    rmqC4E2VnFcT 
  5121. #endif
  5122.  
  5123. #ifdef qC4E2VnT
  5124.     #define COLOR4
  5125.     #define BY_TWO
  5126.     #define EXTERNAL
  5127.     #define VERT_NORM
  5128.     #define TEXTURE
  5129.     #define FUNCTION    rmqC4E2VnT 
  5130. #endif
  5131.  
  5132. #ifdef qC4E2VnVc
  5133.     #define COLOR4
  5134.     #define BY_TWO
  5135.     #define EXTERNAL
  5136.     #define VERT_NORM
  5137.     #define VERT_COLOR
  5138.     #define FUNCTION    rmqC4E2VnVc 
  5139. #endif
  5140.  
  5141. #ifdef qC4E2VnVcT
  5142.     #define COLOR4
  5143.     #define BY_TWO
  5144.     #define EXTERNAL
  5145.     #define VERT_NORM
  5146.     #define VERT_COLOR
  5147.     #define TEXTURE
  5148.     #define FUNCTION    rmqC4E2VnVcT 
  5149. #endif
  5150.  
  5151. #ifdef tC4E2
  5152.     #define COLOR4
  5153.     #define BY_TWO
  5154.     #define EXTERNAL
  5155.     #define FUNCTION    rmtC4E2 
  5156. #endif
  5157.  
  5158. #ifdef tC4E2Fc
  5159.     #define COLOR4
  5160.     #define BY_TWO
  5161.     #define EXTERNAL
  5162.     #define FACET_COLOR
  5163.     #define FUNCTION    rmtC4E2Fc 
  5164. #endif
  5165.  
  5166. #ifdef tC4E2FcT
  5167.     #define COLOR4
  5168.     #define BY_TWO
  5169.     #define EXTERNAL
  5170.     #define TEXTURE
  5171.     #define FACET_COLOR
  5172.     #define FUNCTION    rmtC4E2FcT 
  5173. #endif
  5174.  
  5175. #ifdef tC4E2Fn
  5176.     #define COLOR4
  5177.     #define BY_TWO
  5178.     #define EXTERNAL
  5179.     #define FACET_NORM
  5180.     #define FUNCTION    rmtC4E2Fn 
  5181. #endif
  5182.  
  5183. #ifdef tC4E2FnFc
  5184.     #define COLOR4
  5185.     #define BY_TWO
  5186.     #define EXTERNAL
  5187.     #define FACET_NORM
  5188.     #define FACET_COLOR
  5189.     #define FUNCTION    rmtC4E2FnFc 
  5190. #endif
  5191.  
  5192. #ifdef tC4E2FnFcT
  5193.     #define COLOR4
  5194.     #define BY_TWO
  5195.     #define EXTERNAL
  5196.     #define FACET_NORM
  5197.     #define TEXTURE
  5198.     #define FACET_COLOR
  5199.     #define FUNCTION    rmtC4E2FnFcT 
  5200. #endif
  5201.  
  5202. #ifdef tC4E2FnT
  5203.     #define COLOR4
  5204.     #define BY_TWO
  5205.     #define EXTERNAL
  5206.     #define FACET_NORM
  5207.     #define TEXTURE
  5208.     #define FUNCTION    rmtC4E2FnT 
  5209. #endif
  5210.  
  5211. #ifdef tC4E2FnVc
  5212.     #define COLOR4
  5213.     #define BY_TWO
  5214.     #define EXTERNAL
  5215.     #define VERT_COLOR
  5216.     #define FACET_NORM
  5217.     #define FUNCTION    rmtC4E2FnVc 
  5218. #endif
  5219.  
  5220. #ifdef tC4E2FnVcT
  5221.     #define COLOR4
  5222.     #define BY_TWO
  5223.     #define EXTERNAL
  5224.     #define VERT_COLOR
  5225.     #define FACET_NORM
  5226.     #define TEXTURE
  5227.     #define FUNCTION    rmtC4E2FnVcT 
  5228. #endif
  5229.  
  5230. #ifdef tC4E2T
  5231.     #define COLOR4
  5232.     #define BY_TWO
  5233.     #define EXTERNAL
  5234.     #define TEXTURE
  5235.     #define FUNCTION    rmtC4E2T 
  5236. #endif
  5237.  
  5238. #ifdef tC4E2Vc
  5239.     #define COLOR4
  5240.     #define BY_TWO
  5241.     #define EXTERNAL
  5242.     #define VERT_COLOR
  5243.     #define FUNCTION    rmtC4E2Vc 
  5244. #endif
  5245.  
  5246. #ifdef tC4E2VcT
  5247.     #define COLOR4
  5248.     #define BY_TWO
  5249.     #define EXTERNAL
  5250.     #define VERT_COLOR
  5251.     #define TEXTURE
  5252.     #define FUNCTION    rmtC4E2VcT 
  5253. #endif
  5254.  
  5255. #ifdef tC4E2Vn
  5256.     #define COLOR4
  5257.     #define BY_TWO
  5258.     #define EXTERNAL
  5259.     #define VERT_NORM
  5260.     #define FUNCTION    rmtC4E2Vn 
  5261. #endif
  5262.  
  5263. #ifdef tC4E2VnFc
  5264.     #define COLOR4
  5265.     #define BY_TWO
  5266.     #define EXTERNAL
  5267.     #define VERT_NORM
  5268.     #define FACET_COLOR
  5269.     #define FUNCTION    rmtC4E2VnFc 
  5270. #endif
  5271.  
  5272. #ifdef tC4E2VnFcT
  5273.     #define COLOR4
  5274.     #define BY_TWO
  5275.     #define EXTERNAL
  5276.     #define VERT_NORM
  5277.     #define TEXTURE
  5278.     #define FACET_COLOR
  5279.     #define FUNCTION    rmtC4E2VnFcT 
  5280. #endif
  5281.  
  5282. #ifdef tC4E2VnT
  5283.     #define COLOR4
  5284.     #define BY_TWO
  5285.     #define EXTERNAL
  5286.     #define VERT_NORM
  5287.     #define TEXTURE
  5288.     #define FUNCTION    rmtC4E2VnT 
  5289. #endif
  5290.  
  5291. #ifdef tC4E2VnVc
  5292.     #define COLOR4
  5293.     #define BY_TWO
  5294.     #define EXTERNAL
  5295.     #define VERT_NORM
  5296.     #define VERT_COLOR
  5297.     #define FUNCTION    rmtC4E2VnVc 
  5298. #endif
  5299.  
  5300. #ifdef tC4E2VnVcT
  5301.     #define COLOR4
  5302.     #define BY_TWO
  5303.     #define EXTERNAL
  5304.     #define VERT_NORM
  5305.     #define VERT_COLOR
  5306.     #define TEXTURE
  5307.     #define FUNCTION    rmtC4E2VnVcT 
  5308. #endif
  5309.